-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.13 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.13 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
{
"name": "@s2ze/types",
"version": "2.20.2",
"description": "Valve provided type definitions for CS2 scripting",
"license": "MIT",
"author": "Source2ZE",
"repository": {
"type": "git",
"url": "git+https://github.com/Source2ZE/cs_script.git",
"directory": "packages/types"
},
"types": "build/autoimport/index.d.ts",
"exports": {
".": {
"import": "./build/index.js",
"types": "./build/index.d.ts"
},
"./autoimport": {
"import": "./build/autoimport/index.js",
"types": "./build/autoimport/index.d.ts"
},
"./autoimport/extended": {
"import": "./build/autoimport/extended/index.js",
"types": "./build/autoimport/extended/index.d.ts"
},
"./autoimport/extended/experimental": {
"import": "./build/autoimport/extended/experimental.js",
"types": "./build/autoimport/extended/experimental.d.ts"
}
},
"type": "module",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"scripts": {
"build": "tsc",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"@s2ze/tsconfig": "workspace:*"
}
}