-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
116 lines (116 loc) 路 3.19 KB
/
Copy pathpackage.json
File metadata and controls
116 lines (116 loc) 路 3.19 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "contentforest",
"version": "0.0.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "next build --turbopack",
"start": "next start",
"format": "biome check --write .",
"test:all": "./scripts/test.sh",
"test:ava": "ava",
"test:ava:coverage": "c8 ava",
"test:ava:watch": "ava --watch",
"test:format": "biome check --no-errors-on-unmatched .",
"test:types": "tsc --noEmit",
"lint": "pnpm test:lint",
"test:lint": "biome lint .",
"test:lint:fix": "biome check --write --unsafe .",
"test:knip": "knip",
"test:audit": "pnpm audit --audit-level=high --ignore-unfixable",
"test:security": "semgrep scan --config auto --error",
"audit": "pnpm audit",
"fetch-refs": "tsx scripts/fetch-refs.ts",
"validate": "tsx scripts/validate-content.ts",
"generate": "tsx scripts/generate-content.ts",
"detect-releases": "tsx scripts/detect-releases.ts",
"seed-fixtures": "tsx scripts/seed-fixtures.ts",
"change-request": "tsx scripts/change-request.ts",
"parse-change-request": "tsx scripts/parse-change-request.ts",
"parse-release-request": "tsx scripts/parse-release-request.ts",
"collective-request": "tsx scripts/collective-request.ts",
"parse-collective-request": "tsx scripts/parse-collective-request.ts",
"sync-collective-slugs": "tsx scripts/sync-collective-slugs.ts",
"personal-request": "tsx scripts/personal-request.ts",
"parse-personal-request": "tsx scripts/parse-personal-request.ts",
"x-daily": "tsx scripts/x-daily.ts",
"plan-calendar": "tsx scripts/plan-calendar.ts",
"publish-discussions": "tsx scripts/publish-discussions.ts",
"sync-team-members": "tsx scripts/sync-team-members.ts",
"sync-pack-options": "tsx scripts/sync-pack-options.ts",
"sync-change-targets": "tsx scripts/sync-change-targets.ts",
"sync-release-products": "tsx scripts/sync-release-products.ts"
},
"dependencies": {
"@radix-ui/react-slot": "^1.2.3",
"@react-three/fiber": "^9.6.1",
"@react-three/postprocessing": "^3.0.4",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"gray-matter": "^4.0.3",
"lucide-react": "^0.545.0",
"marked": "^17.0.0",
"next": "^15.5.7",
"postprocessing": "^6.39.1",
"react": "19.1.0",
"react-dom": "19.1.0",
"tailwind-merge": "^3.3.1",
"three": "^0.183.2"
},
"devDependencies": {
"@ava/typescript": "^7.0.0",
"@biomejs/biome": "^2.3.11",
"@tailwindcss/postcss": "^4",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/three": "^0.183.1",
"ava": "^7.0.0",
"c8": "^11.0.0",
"knip": "^6.0.0",
"tailwindcss": "^4",
"tsx": "^4.20.6",
"tw-animate-css": "^1.4.0",
"typescript": "^5"
},
"ava": {
"extensions": {
"ts": "module"
},
"nodeArguments": [
"--import=tsx",
"--no-warnings"
],
"files": [
"scripts/**/*.spec.ts",
"lib/**/*.spec.ts"
],
"workerThreads": false,
"serial": true,
"environmentVariables": {
"NODE_ENV": "test"
}
},
"c8": {
"all": true,
"include": [
"scripts/**/*.ts",
"lib/**/*.ts"
],
"exclude": [
"**/*.tsx",
"**/*.spec.ts",
"**/*.d.ts",
"hooks/**"
],
"reporter": [
"text",
"json-summary",
"lcov"
],
"lines": 80,
"functions": 0,
"branches": 0,
"statements": 0
}
}