-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.34 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
{
"name": "simai.js",
"version": "1.1.3",
"description": "A serializer/deserializer for the rhythm game chart format simai.",
"main": "dist/index.js",
"module": "dist/index.mjs",
"type": "commonjs",
"types": "dist/index.d.ts",
"runkitExampleFilename": "examples/runkit.js",
"exports": {
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"scripts": {
"test": "mocha",
"build": "rimraf dist && tsup",
"prepack": "pnpm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/reflektone-games/simai.js.git"
},
"keywords": [
"serializer",
"deserializer",
"data-format",
"maimai",
"maimai-dx"
],
"author": "reflektone-games",
"license": "MIT",
"bugs": {
"url": "https://github.com/reflektone-games/simai.js/issues"
},
"homepage": "https://github.com/reflektone-games/simai.js#readme",
"devDependencies": {
"@types/mocha": "^10.0.8",
"@types/node": "^20.16.10",
"mocha": "^10.7.3",
"rimraf": "^6.0.1",
"ts-node": "^10.9.2",
"tsup": "^8.3.0"
}
}