-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.53 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "pnovel",
"version": "0.7.9",
"description": "Light weight markup language for Pixiv novels",
"main": "src/eval.js",
"repository": "ssh://git@github.com/515hikaru/pnovel.git",
"author": "515hikaru <12kojima.takahiro@gmail.com>",
"license": "MIT",
"dependencies": {
"@types/jest": "^29.5.14",
"commander": "^13.1.0",
"peggy": "^4.2.0",
"ts-loader": "^9.5.2",
"typescript": "^5.7.3"
},
"type": "module",
"imports": {
"#parser": "./parser/parser.js"
},
"exports": {
".": {
"import": "./dist/main.js"
}
},
"bin": {
"pnovel": "./bin/pnovel.js"
},
"scripts": {
"generate": "peggy -o parser/parser.js --format es pnovel.peggy",
"typecheck": "tsc -p . --noEmit",
"lint": "eslint src/*.ts src/__tests__/*.spec.ts",
"fix": "eslint --fix src/*.ts src/__tests__/*.spec.ts",
"start": "node dist/main.js",
"test": "npm run generate && cross-env NODE_OPTIONS='--experimental-vm-modules' jest --coverage --verbose",
"build": "webpack --config webpack.config.mjs"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^8.22.0",
"@typescript-eslint/parser": "^8.22.0",
"cross-env": "^7.0.3",
"eslint": "^9.19.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jest": "^28.11.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^7.2.1",
"jest": "^29.7.0",
"prettier": "^3.4.2",
"ts-jest": "^29.2.5",
"webpack": "^5.97.1",
"webpack-cli": "^6.0.1",
"webpack-node-externals": "^3.0.0"
}
}