-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1 KB
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
{
"name": "@hn3000/ats-types",
"version": "0.2.1",
"description": "Types describing files and stats-server output for the VR game Audio Trip by Kinemotik, ",
"main": "./out/src/index.js",
"types": "./out/src/index.d.ts",
"type": "module",
"typesVersions": {
"*": {
"./index.js": [
"./out/src/index.d.ts"
],
"./ats": [
"./out/src/ats.d.ts"
],
"./atl": [
"./out/src/atl.d.ts"
],
"./stat-server": [
"./out/src/stat-server.d.ts"
]
}
},
"scripts": {
"tsc": "tsc",
"prepare": "tsc",
"convert-atl": "node --experimental-json-modules --loader ts-node/esm tools/convert-atl.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"repository": {
"url": "https://github.com/hn3000/ats-types"
},
"devDependencies": {
"typescript": "^4.4.4",
"ts-node": "10.4.0"
},
"dependencies": {
"@types/node": "^16.11.6"
},
"files": [
"out",
"src",
"docs",
"sample-config"
]
}