-
Notifications
You must be signed in to change notification settings - Fork 38
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.48 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.48 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": "react-pannellum",
"version": "1.1.1",
"description": "A library show panorama image for react",
"author": "hoaiduyit",
"license": "MIT",
"repository": "hoaiduyit/react-pannellum",
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"engines": {
"node": ">=22.0.0 <23.0.0",
"npm": ">=10.0.0"
},
"scripts": {
"prepare": "npm run build",
"clean": "node -e \"require('fs').rmSync('dist',{recursive:true,force:true})\"",
"build": "npm run clean && tsc && tsc-alias -p tsconfig.json && copyfiles -u 1 \"src/css/**/*\" dist && copyfiles -u 1 \"src/libs/**/*\" dist",
"start": "concurrently \"tsc -w\" \"tsc-alias -p tsconfig.json -w\"",
"lint": "eslint \"src/**/*.{ts,tsx}\""
},
"peerDependencies": {
"react": "^18.0.0 || ^19.0.0",
"react-dom": "^18.0.0 || ^19.0.0"
},
"devDependencies": {
"@eslint/js": "^9.21.0",
"@types/node": "^22.19.17",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"concurrently": "^9.1.2",
"copyfiles": "^2.4.1",
"tsc-alias": "^1.8.16",
"eslint": "^9.21.0",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-hooks": "^5.1.0",
"globals": "^15.15.0",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"typescript": "^5.7.3",
"typescript-eslint": "^8.25.0"
},
"files": [
"dist"
]
}