-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.47 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.47 KB
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
70
71
72
73
74
75
76
{
"name": "particles",
"version": "1.2.0",
"private": true,
"description": "Fields and particles simulation",
"type": "module",
"scripts": {
"prebuild": "tsc -b",
"build": "vite build",
"lint-src": "eslint --quiet ./src/",
"lint-style": "npx stylelint src/**/*.*css",
"lint-ts": "npx tsc -b ./ --noEmit",
"lint": "npm-run-all lint-src lint-ts lint-style",
"prestart": "npm install",
"start": "vite",
"preview": "vite preview",
"all": "npm-run-all lint build",
"deploy": "node ./scripts/deploy.js",
"commit-version": "node ./scripts/commit-version.js",
"release": "node ./scripts/release.js"
},
"dependencies": {
"@jezvejs/number": "^1.1.0",
"@jezvejs/react": "^1.16.2",
"@jezvejs/types": "^1.1.0",
"@vitejs/plugin-react": "^4.7.0",
"classnames": "^2.5.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"vite": "^6.4.1",
"vite-plugin-svgr": "^4.5.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/feesler/particles.git"
},
"keywords": [
"simulation",
"canvas",
"particle",
"physics"
],
"author": "Ilya Makarov",
"license": "ISC",
"bugs": {
"url": "https://github.com/feesler/particles/issues"
},
"homepage": "https://github.com/feesler/particles#readme",
"devDependencies": {
"@eslint/compat": "^1.4.0",
"@eslint/js": "^9.13.0",
"@jezvejs/release-tools": "^1.0.3",
"@tsconfig/vite-react": "^3.4.0",
"@types/node": "^22.18.13",
"@types/react": "^18.3.26",
"@types/react-dom": "^18.3.7",
"@typescript-eslint/eslint-plugin": "^8.31.0",
"@typescript-eslint/parser": "^8.31.0",
"dotenv": "^16.6.1",
"eslint": "^9.38.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.24",
"globals": "^15.15.0",
"npm-run-all": "^4.1.5",
"sass-embedded": "^1.93.2",
"stylelint": "^16.25.0",
"stylelint-config-prettier-scss": "^1.0.0",
"stylelint-config-standard-scss": "^14.0.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.46.2"
}
}