-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.61 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.61 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
{
"name": "react-scannable",
"version": "0.0.21",
"description": "",
"author": "shayc",
"license": "MIT",
"type": "commonjs",
"sideEffects": true,
"packageManager": "npm@10.9.8",
"engines": {
"node": "^22.12.0 || >=24.0.0"
},
"repository": "cboard-org/react-scannable",
"main": "dist/index.js",
"module": "dist/index.es.js",
"jsnext:main": "dist/index.es.js",
"scripts": {
"test": "vitest run",
"test:watch": "vitest",
"build": "vite build",
"start": "npm run demo",
"demo": "vite --config vite.demo.config.mjs",
"demo:build": "vite build --config vite.demo.config.mjs",
"prepare": "npm run build",
"predeploy": "npm run demo:build",
"deploy": "gh-pages -d demo-dist",
"prettier": "prettier --write .",
"prettier:check": "prettier --check .",
"check:package": "node scripts/check-package.mjs",
"publint": "node scripts/check-publint.mjs",
"check": "npm run prettier:check && npm test && npm run build && npm run check:package && npm run publint && npm run demo:build"
},
"dependencies": {
"uuid": "^11.1.1"
},
"peerDependencies": {
"react": "^17.0.0 || ^18.0.0",
"react-dom": "^17.0.0 || ^18.0.0"
},
"devDependencies": {
"@babel/core": "^7.29.7",
"@babel/preset-env": "^7.29.7",
"@vitejs/plugin-react": "^6.0.5",
"gh-pages": "^6.3.0",
"jsdom": "^27.4.0",
"prettier": "^3.9.6",
"prop-types": "^15.8.1",
"publint": "^0.3.23",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"vite": "^8.2.1",
"vite-plugin-css-injected-by-js": "^5.0.2",
"vitest": "^4.1.10"
},
"files": [
"dist"
]
}