-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
38 lines (38 loc) · 966 Bytes
/
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
{
"name": "wareki",
"version": "1.0.0",
"description": "",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "tsc -p ./tsconfig.json",
"check": "tsc --noEmit",
"test": "vitest run",
"lint": "eslint ./src && prettier --check ./src",
"lint:fix": "eslint --fix ./src && prettier --write ./src",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tohashi/wareki.git"
},
"author": "tohashi",
"license": "MIT",
"bugs": {
"url": "https://github.com/tohashi/wareki/issues"
},
"homepage": "https://github.com/tohashi/wareki#readme",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "8.18.2",
"@typescript-eslint/parser": "8.18.2",
"c8": "10.1.3",
"eslint": "8.57.1",
"eslint-config-prettier": "9.1.0",
"prettier": "2.8.8",
"typescript": "5.7.2",
"vitest": "2.1.8"
},
"files": [
"lib"
]
}