-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.12 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
{
"name": "@kaplayjs/crew",
"description": "The home of the KAPLAY assets.",
"version": "1.7.1",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": {
"default": "./dist/index.mjs",
"types": "./dist/index.d.ts"
},
"require": {
"default": "./dist/index.cjs",
"types": "./dist/index.d.ts"
}
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/kaplayjs/crew.git"
},
"files": [
"dist/",
"README.md"
],
"scripts": {
"build": "pnpm run tsc && node --experimental-strip-types scripts/build.ts",
"tsc": "tsc",
"prepare": "pnpm run build"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"packageManager": "[email protected]+sha512.38dc6fba8dba35b39340b9700112c2fe1e12f10b17134715a4aa98ccf7bb035e76fd981cf0bb384dfa98f8d6af5481c2bef2f4266a24bfa20c34eb7147ce0b5e",
"dependencies": {
"vite": "^5.4.0"
},
"devDependencies": {
"@kaplayjs/dprint-config": "^1.0.0",
"dprint": "^0.47.2",
"esbuild": "^0.23.0"
}
}