-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.51 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.51 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
{
"name": "guilty-spark",
"version": "0.2.0",
"description": "Unicode spinner animations for React, driven by requestAnimationFrame",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/blas0/guilty-spark.git"
},
"keywords": [
"spinner",
"loading",
"animation",
"react",
"unicode",
"requestAnimationFrame",
"indicator"
],
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"files": ["dist"],
"peerDependencies": {
"react": ">=18",
"@types/react": ">=18"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@happy-dom/global-registrator": "^20.8.4",
"@testing-library/jest-dom": "^6.4.0",
"@testing-library/react": "^16.0.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@typescript-eslint/eslint-plugin": "^8.57.1",
"@typescript-eslint/parser": "^8.57.1",
"bun-types": "^1.3.10",
"happy-dom": "^14.0.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"typescript": "^5.4.0"
},
"scripts": {
"build": "NODE_ENV=production bun build src/index.ts --outdir dist --target browser --format esm --external react --external react-dom --external react/jsx-runtime --external react/jsx-dev-runtime && tsc -p tsconfig.build.json",
"typecheck": "tsc --noEmit",
"lint": "bunx eslint src tests",
"test": "bun test",
"dev": "bun build src/index.ts --outdir dist --target browser --format esm --watch"
}
}