-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.03 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.03 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
{
"name": "react-pictode",
"author": "JessYan0913",
"private": false,
"version": "1.0.4",
"main": "dist/main.js",
"types": "dist/main.d.ts",
"files": [
"dist"
],
"sideEffects": [
"**/*.css"
],
"scripts": {
"dev": "vite",
"build": "tsc --p ./tsconfig.build.json && vite build",
"lint": "eslint . --fix --ext .js,.ts,.tsx",
"preview": "vite preview",
"prepare": "husky install"
},
"dependencies": {
"@pictode/core": "^1.0.4",
"@pictode/plugin-alignment": "^1.0.4",
"@pictode/plugin-history": "^1.0.4",
"@pictode/plugin-selector": "^1.0.4",
"@pictode/tools": "^1.0.4",
"@pictode/utils": "^1.0.4",
"@popperjs/core": "^2.11.8",
"lucide-react": "^0.441.0"
},
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@commitlint/cli": "^18.0.0",
"@commitlint/config-conventional": "^18.0.0",
"@types/node": "20.14.8",
"@types/react": "18.3.3",
"@types/react-color": "^3.0.9",
"@types/react-dom": "18.3.0",
"@typescript-eslint/eslint-plugin": "^8.4.0",
"@typescript-eslint/parser": "^8.4.0",
"@typescript-eslint/typescript-estree": "^8.6.0",
"@vitejs/plugin-react": "^4.3.1",
"autoprefixer": "^10.4.16",
"eslint": "^8.45.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-unused-imports": "^4.1.4",
"glob": "^10.3.3",
"husky": "^8.0.3",
"lint-staged": "^15.2.10",
"postcss": "^8.4.31",
"postcss-import": "^15.1.0",
"prettier": "^3.0.3",
"prettier-plugin-organize-imports": "^4.0.0",
"react": "^18.3.1",
"react-color": "^2.19.3",
"react-dom": "^18.3.1",
"tailwindcss": "^3.3.3",
"typescript": "^5.0.2",
"vite": "^4.4.5",
"vite-plugin-dts": "^3.5.1",
"vite-plugin-lib-inject-css": "^1.2.0"
},
"lint-staged": {
"*.{js,ts,tsx}": "eslint --fix --ext .js,.ts,.tsx",
"*.scss": "prettier --write"
}
}