-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
40 lines (40 loc) · 1.07 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
{
"name": "ac-predictor",
"version": "2.0.8",
"author": "keymoon",
"description": "コンテスト中にAtCoderのパフォーマンスを予測します",
"typeRoots": [
"types",
"node_modules/@types"
],
"scripts": {
"lint": "tsc --noEmit; eslint 'src/**/*.ts'",
"lint:fix": "tsc --noEmit; eslint --fix 'src/**/*.ts'",
"bundle": "rollup -c",
"test": "jest"
},
"devDependencies": {
"@rollup/plugin-json": "^6.0.0",
"@tsconfig/node20": "^1.0.2",
"@types/jest": "^29.5.2",
"@types/tampermonkey": "^4.0.10",
"@typescript-eslint/eslint-plugin": "^5.60.1",
"@typescript-eslint/parser": "^5.60.1",
"eslint": "^8.44.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.5.0",
"prettier": "^2.8.8",
"rollup": "^3.26.0",
"rollup-plugin-html": "^0.2.1",
"rollup-plugin-scss": "3",
"rollup-plugin-typescript": "^1.0.1",
"sass": "^1.63.6",
"ts-jest": "^29.1.1",
"typescript": "^5.1.6"
},
"license": "MIT",
"dependencies": {
"tslib": "^2.6.0"
}
}