-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.18 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.18 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
{
"name": "tokenscript-docs-website",
"version": "0.1.0",
"private": true,
"description": "Docusaurus site for TokenScript documentation",
"scripts": {
"docusaurus:start": "docusaurus start --port 3331",
"docusaurus:build": "docusaurus build",
"docusaurus:serve": "docusaurus serve",
"docusaurus:clear": "docusaurus clear",
"lint": "biome lint --config-path ../biome.json .",
"format": "biome format --config-path ../biome.json .",
"verify:tokenscript": "tsx scripts/verify-code-blocks.ts .",
"fetch:schemas": "tsx scripts/fetch-schemas.ts"
},
"dependencies": {
"@docusaurus/core": "^3.5.2",
"@docusaurus/preset-classic": "^3.5.2",
"@docusaurus/theme-classic": "^3.5.2",
"clsx": "^2.1.1",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@biomejs/biome": "^2.2.4",
"@tokens-studio/tokenscript-interpreter": "^0.5.6",
"@tsconfig/docusaurus": "^2.0.3",
"@types/mdast": "^4.0.4",
"@types/node": "^22.13.4",
"@types/react": "^18.3.18",
"@types/react-dom": "^18.3.7",
"node-fetch": "^3.3.2",
"tsx": "^4.20.6",
"typescript": "^5.7.3"
},
"engines": {
"node": ">=16.14"
}
}