-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
71 lines (71 loc) · 1.82 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
67
68
69
70
71
{
"name": "atomic-spinner",
"version": "0.0.0",
"description": "Customizable React loading spinner that looks like an atom",
"author": "David Lounsbrough",
"license": "MIT",
"repository": "Bayer-Group/atomic-spinner",
"main": "lib/index.js",
"module": "lib/index.esm.js",
"types": "lib/index.d.ts",
"engines": {
"node": ">=22"
},
"scripts": {
"clean": "rm -rf lib",
"build": "rollup -c",
"build-watch": "rollup -c --watch",
"publish-npm": "pnpm clean && pnpm build && npm publish",
"start-demo": "pnpm --prefix demo start",
"build-demo": "pnpm --prefix demo build",
"lint": "eslint .",
"cypress:install": "cypress install",
"test": "pnpm cypress run --component",
"test-interactive": "pnpm cypress open"
},
"keywords": [
"atomic",
"atom",
"chemistry",
"loader",
"loading",
"spinner",
"npm",
"package",
"react",
"typescript"
],
"files": [
"/lib"
],
"peerDependencies": {
"react": ">=17.0.0",
"react-dom": ">=17.0.0"
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"@rollup/plugin-commonjs": "^28.0.2",
"@rollup/plugin-node-resolve": "^16.0.0",
"@types/node": "^22.10.3",
"@types/react": "^19.0.2",
"@types/react-dom": "^19.0.2",
"@types/webpack": "^5.28.5",
"@typescript-eslint/eslint-plugin": "^8.19.0",
"compression-webpack-plugin": "^11.1.0",
"cypress": "^14.0.1",
"eslint": "^9.17.0",
"gh-pages": "^6.2.0",
"postcss": "^8.4.49",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"rollup": "^4.29.1",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-typescript2": "^0.36.0",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"tslib": "^2.8.1",
"typescript": "^5.7.2",
"typescript-eslint": "^8.19.0",
"webpack": "^5.97.1"
}
}