-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
66 lines (66 loc) · 1.88 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
{
"name": "@gen/react-use-p5",
"version": "0.4.3",
"description": "use p5 with hooks",
"author": "zenoplex",
"license": "MIT",
"repository": "zenoplex/react-use-p5",
"main": "dist/index.js",
"module": "dist/index.modern.js",
"source": "src/index.tsx",
"engines": {
"node": ">=14"
},
"scripts": {
"build": "microbundle-crl --no-compress --format modern,cjs",
"start": "microbundle-crl watch --no-compress --format modern,cjs",
"prepare": "run-s build",
"test": "run-s test:unit test:lint test:build",
"test:build": "run-s build",
"test:lint": "eslint .",
"test:unit": "cross-env CI=1 react-scripts test --env=jsdom",
"test:watch": "react-scripts test --env=jsdom",
"predeploy": "cd example && npm install && npm run build",
"deploy": "gh-pages -d example/build",
"release": "dotenv release-it"
},
"peerDependencies": {
"p5": "*",
"react": "^16.9.0 || ^17.0.0 || ^18.0.0"
},
"devDependencies": {
"@testing-library/react": "14.1.2",
"@types/jest": "29.5.11",
"@types/p5": "1.7.4",
"@types/react": "18.2.42",
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/parser": "5.62.0",
"@babel/eslint-parser": "7.23.3",
"canvas": "2.11.2",
"cross-env": "7.0.3",
"dotenv-cli": "7.3.0",
"eslint": "8.55.0",
"eslint-config-prettier": "8.10.0",
"eslint-config-react-app": "7.0.1",
"eslint-plugin-import": "2.29.0",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-react": "7.33.2",
"gh-pages": "5.0.0",
"microbundle-crl": "0.13.11",
"npm-run-all": "4.1.5",
"p5": "1.9.0",
"prettier": "2.8.8",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-scripts": "5.0.1",
"release-it": "15.11.0",
"typescript": "4.9.5"
},
"files": [
"dist"
],
"publishConfig": {
"access": "public"
}
}