-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.07 KB
/
Copy pathpackage.json
File metadata and controls
77 lines (77 loc) · 2.07 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
74
75
76
77
{
"name": "sidenotes",
"version": "2.0.1",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"keywords": [
"react",
"google docs",
"comments"
],
"repository": {
"type": "git",
"url": "git+https://github.com/curvenote/sidenotes.git"
},
"bugs": {
"url": "https://github.com/curvenote/sidenotes/issues"
},
"homepage": "https://github.com/curvenote/sidenotes",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"dependencies": {},
"peerDependencies": {
"classnames": "^2.5.1",
"react": ">=18",
"react-dom": ">=18",
"uuid": ">=9"
},
"scripts": {
"clean": "rm -rf dist dist-demo",
"dev": "vite",
"build": "bun run clean && tsc -p tsconfig.build.json",
"build:demo": "vite build",
"typecheck": "tsc --noEmit",
"preview": "vite preview",
"lint": "eslint \"src/**/*.{ts,tsx}\" \"demo/**/*.{ts,tsx}\"",
"lint:fix": "eslint --fix \"src/**/*.{ts,tsx}\" \"demo/**/*.{ts,tsx}\"",
"format": "prettier --check \"src/**/*.{ts,tsx,css}\" \"demo/**/*.{ts,tsx,css,html}\"",
"format:fix": "prettier --write \"src/**/*.{ts,tsx,css}\" \"demo/**/*.{ts,tsx,css,html}\"",
"test": "bun run build:demo && bun scripts/render-check.mjs"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@happy-dom/global-registrator": "^20.9.0",
"@tailwindcss/vite": "^4.2.2",
"@types/node": "^25.6.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@types/uuid": "^11.0.0",
"@vitejs/plugin-react": "^6.0.1",
"classnames": "^2.5.1",
"eslint": "^10.2.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-react-hooks": "^7.1.1",
"globals": "^17.5.0",
"happy-dom": "^20.9.0",
"prettier": "^3.8.3",
"react": "^19.2.5",
"react-dom": "^19.2.5",
"tailwindcss": "^4.2.2",
"typescript": "^6.0.3",
"typescript-eslint": "^8.58.2",
"uuid": "^14.0.0",
"vite": "^8.0.8"
},
"files": [
"dist"
]
}