-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.2 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
{
"name": "mml-parser",
"version": "1.2.1",
"author": "MaoShizhong",
"description": "",
"repository": {
"type": "git",
"url": "git+https://github.com/MaoShizhong/mml-parser.git"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"./dist/*"
],
"engines": {
"node": ">=16.14.0"
},
"keywords": [
"mml",
"music macro language",
"parser"
],
"license": "ISC",
"scripts": {
"build": "tsc -p tsconfig.prod.json && ts-cleaner",
"dev": "tsx watch ./src/index.ts",
"format": "prettier --write ./src/",
"lint": "eslint",
"prepare": "npm run build",
"start": "node ./dist/index.js",
"test": "jest --verbose ./src/tests/*.test.ts"
},
"devDependencies": {
"@eslint/js": "^9.2.0",
"@types/jest": "^29.5.12",
"@types/node": "^20.12.8",
"eslint": "^8.57.0",
"globals": "^15.1.0",
"jest": "^29.7.0",
"prettier": "^3.2.5",
"ts-cleaner": "^1.0.5",
"ts-jest": "^29.1.2",
"tsx": "^4.9.0",
"typescript": "^5.4.5",
"typescript-eslint": "^7.8.0"
}
}