-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
69 lines (69 loc) · 1.77 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "newgrounds.js",
"version": "4.1.0",
"description": "The definitive Newgrounds.io library for Node.js and the browser.",
"keywords": [
"newgrounds",
"newgrounds.io",
"phaserjs",
"phaser",
"kaboom.js",
"kaboom"
],
"author": "lajbel <[email protected]>",
"license": "MIT",
"homepage": "https://newgroundsjs.lajbel.com/",
"repository": "github:lajbel/newgrounds-js",
"type": "module",
"main": "./dist/newgrounds.cjs",
"module": "./dist/newgrounds.mjs",
"types": "./dist/newgrounds.d.ts",
"scripts": {
"setup": "npm run dts && npm run build",
"build": "node scripts/buildAll.js",
"dev": "vite",
"lib:dev": "node --watch-path ./src scripts/buildAll.js",
"dts": "dts-bundle-generator -o dist/first.d.ts src/types.ts",
"fmt": "dprint fmt",
"prepare": "npm run setup"
},
"files": [
"dist/",
"source/"
],
"exports": {
".": {
"import": {
"types": "./dist/newgrounds.d.ts",
"default": "./dist/newgrounds.mjs"
},
"require": {
"types": "./dist/newgrounds.d.ts",
"default": "./dist/newgrounds.cjs"
}
},
"./global": "./dist/global.js"
},
"typesVersions": {
"*": {
"global": [
"./dist/global.d.ts"
]
}
},
"devDependencies": {
"@types/crypto-js": "^4.2.2",
"@types/node": "^20.12.13",
"dprint": "^0.45.1",
"dts-bundle-generator": "^9.5.1",
"esbuild": "^0.13.15",
"kaplay": "3001.0.0-alpha.22",
"typescript": "^5.4.5",
"vite": "^5.4.2"
},
"dependencies": {
"crypto-js": "^4.2.0",
"kapcacher": "^0.2.2"
},
"packageManager": "[email protected]+sha512.38dc6fba8dba35b39340b9700112c2fe1e12f10b17134715a4aa98ccf7bb035e76fd981cf0bb384dfa98f8d6af5481c2bef2f4266a24bfa20c34eb7147ce0b5e"
}