44 lines
1.1 KiB
JSON
44 lines
1.1 KiB
JSON
{
|
|
"name": "ts-oak-plugin",
|
|
"version": "1.0.0",
|
|
"description": "TypeScript language service plugin for OAK",
|
|
"main": "lib/index.js",
|
|
"scripts": {
|
|
"clean": "rimraf -g local lib \"e2e/**/*.log\"",
|
|
"build": "tsc -p tsconfig.build.json",
|
|
"build:local": "tsc -p tsconfig.build.json --outDir local",
|
|
"lint": "eslint \"src/**/*.ts\" \"e2e/**/*.ts\"",
|
|
"test": "jest",
|
|
"prettier": "prettier \"*.md\" \"*.json\" \"*.yml\" \"src/**/*\" \"e2e/**/*\"",
|
|
"format": "npm run prettier -- --write",
|
|
"format:check": "npm run prettier -- --check",
|
|
"e2e": "jest --config e2e/jest.config.json",
|
|
"prepare": "husky install"
|
|
},
|
|
"keywords": [],
|
|
"author": "qcqcqc",
|
|
"license": "ISC",
|
|
"type": "commonjs",
|
|
"peerDependencies": {
|
|
"typescript": ">= 4.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/jest": "29.5.14",
|
|
"@types/node": "20.19.25",
|
|
"fretted-strings": "2.0.0",
|
|
"husky": "9.1.7",
|
|
"jest": "29.7.0",
|
|
"prettier": "3.6.2",
|
|
"pretty-quick": "4.2.2",
|
|
"rimraf": "5.0.10",
|
|
"ts-jest": "29.4.5",
|
|
"typescript": "5.9.3"
|
|
},
|
|
"files":[
|
|
"lib"
|
|
],
|
|
"dependencies": {
|
|
"oak-domain": "^5.1.33"
|
|
}
|
|
}
|