-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
35 lines (35 loc) · 1.04 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
{
"name": "p5play-web",
"author": "quinton-ashley <[email protected]>",
"description": "The website for p5play",
"devDependencies": {
"@types/p5": "^1.7.6",
"p5": "^1.11.2",
"planck": "^1.1.1",
"q5": "^2.12.0",
"bun-types": "^1.1.38",
"jest-cli": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"js-beautify": "^1.15.1",
"taffydb": "^2.7.3"
},
"homepage": "https://github.com/quinton-ashley/p5play-web",
"jest": {
"testEnvironmentOptions": {
"resources": "usable"
}
},
"license": "NONE",
"scripts": {
"tests": "jest tests",
"types": "bun types/types.js && cp v3/p5play.d.ts ../../pkg/p5play/p5play.d.ts",
"docs": "jsdoc --configure docs/config/jsdoc.json",
"min": "terser v3/p5play.js --compress ecma=2024 --mangle > v3/p5play.min.js",
"dist": "bun types && bun min && cp v3/p5play.js ../../pkg/p5play/p5play.js && cp v3/p5play.min.js ../../pkg/p5play/p5play.min.js",
"v": "npm version patch --force",
"V": "npm version minor --force",
"version": "git add -A",
"postversion": "git push"
},
"version": "1.15.8"
}