-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.49 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
{
"name": "ponczek",
"version": "2.0.0",
"description": "Deep-fried game framework with sweet filling",
"author": "Deseteral <github.com/deseteral>",
"license": "MIT",
"homepage": "https://github.com/Deseteral/ponczek#readme",
"repository": {
"type": "git",
"url": "https://github.com/Deseteral/ponczek.git"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "npm run clean && npm run build:generate-index-files && tsc -p ./tsconfig.build.json && tsc-alias -p ./tsconfig.build.json",
"build:generate-index-files": "ts-node ./scripts/generate-index-files",
"clean": "rm -rf ./dist",
"test": "npm run test:type-check && npm run test:lint",
"test:lint": "eslint . --ext ts",
"test:type-check": "tsc --noEmit",
"test:type-check:watch": "tsc --noEmit -w",
"examples:build": "npm run examples:clean && npm run examples:build-assets && vite build",
"examples:dev": "npm run examples:build-assets && vite",
"examples:preview": "vite preview",
"examples:build-assets": "ts-node ./examples/scripts/generate-asset-list.ts",
"examples:clean": "rm -rf ./examples/dist",
"prepublishOnly": "npm run build"
},
"dependencies": {
"heapify": "0.6.0",
"howler": "2.2.3"
},
"devDependencies": {
"@deseteral/eslint-config": "7.0.0",
"@types/howler": "2.2.7",
"@types/node": "18.11.18",
"eslint": "8.31.0",
"ts-node": "10.9.1",
"tsc-alias": "1.8.2",
"typescript": "4.9.4",
"vite": "4.0.4"
}
}