-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
38 lines (38 loc) · 1.19 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
{
"scripts": {
"build": "npm run src:build && npm run examples:init && npm run examples:build",
"src:build": "npm run build --prefix src",
"examples:init": "cd examples && cd checkers && npm install",
"examples:build": "npm run build --prefix examples/checkers",
"tests:init": "cd tests && npm install",
"test": "npm run tests:init && npm start --prefix tests",
"lint": "npm run lint:ec && npm run lint:eslint",
"lint:ec": "ec",
"lint:eslint": "cross-env ESLINT_USE_FLAT_CONFIG=true eslint -c eslint.config.mjs ."
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-typescript": "^9.0.2",
"@typescript-eslint/eslint-plugin": "^5.42.0",
"@typescript-eslint/parser": "^5.42.0",
"copyfiles": "2.4.1",
"cross-env": "^7.0.3",
"editorconfig-checker": "^4.0.2",
"eslint": "^8.26.0",
"globals": "^13.17.0",
"replace-ext": "^2.0.0",
"rollup": "^3.2.3",
"ts-transform-import-path-rewrite": "^0.3.0",
"ttypescript": "^1.5.13",
"typescript": "4.8.4"
},
"private": true,
"engines": {
"node": ">=16.18.0",
"npm": ">=8.19.2"
},
"volta": {
"node": "16.18.0",
"npm": "8.19.2"
}
}