-
Notifications
You must be signed in to change notification settings - Fork 1.2k
/
Copy pathpackage.json
52 lines (52 loc) · 1.08 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
51
52
{
"name": "sprig",
"version": "1.0.3",
"description": "The standalone Sprig game engine",
"main": "dist/api.js",
"types": "dist/api.d.ts",
"scripts": {
"build": "tsc",
"api-reference": "node scripts/api-reference.js",
"toc": "markdown-toc -i --bullets '-' README.md",
"prepublishOnly": "yarn build && yarn api-reference && yarn toc",
"dev": "tsc --watch"
},
"exports": {
".": {
"import": "./dist/api.js",
"types": "./dist/api.d.ts"
},
"./base": {
"import": "./dist/base/index.js",
"types": "./dist/base/index.d.ts"
},
"./image-data": {
"import": "./dist/image-data/index.js",
"types": "./dist/image-data/index.d.ts"
},
"./web": {
"import": "./dist/web/index.js",
"types": "./dist/web/index.d.ts"
}
},
"repository": "https://github.com/hackclub/sprig/",
"license": "MIT",
"private": false,
"type": "module",
"devDependencies": {
"markdown-toc": "^1.2.0",
"typescript": "^5.1.3"
},
"files": [
"README.md",
"LICENSE",
"dist/",
"src/",
"base.js",
"base.d.ts",
"image-data.js",
"image-data.d.ts",
"web.js",
"web.d.ts"
]
}