-
Notifications
You must be signed in to change notification settings - Fork 2.3k
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.03 KB
/
Copy pathpackage.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": "@google/design.md",
"version": "0.1.1",
"description": "Bridging design systems and code: a linter and exporter for the DESIGN.md format",
"keywords": [
"design.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/google-labs-code/design.md.git"
},
"bugs": {
"url": "https://github.com/google-labs-code/design.md/issues"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"private": false,
"type": "module",
"bin": {
"design.md": "./dist/index.js"
},
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./linter": {
"import": "./dist/linter/index.js",
"types": "./dist/linter/index.d.ts"
}
},
"publishConfig": {
"registry": "https://wombat-dressing-room.appspot.com",
"access": "public"
},
"scripts": {
"build": "bun build src/index.ts src/linter/index.ts --outdir dist --target node && npx tsc --project tsconfig.build.json --emitDeclarationOnly --skipLibCheck && cp src/linter/spec-config.yaml dist/linter/ && cp src/linter/spec-config.yaml dist/ && cp ../../docs/spec.md dist/linter/",
"dev": "bun run src/index.ts",
"test": "bun test",
"spec:gen": "bun run src/linter/spec-gen/generate.ts",
"check-package": "bun run scripts/check-package.ts"
},
"dependencies": {
"@json-render/core": "^0.16.0",
"@json-render/ink": "^0.16.0",
"@types/js-yaml": "^4.0.9",
"citty": "^0.1.6",
"ink": "^7.0.0",
"js-yaml": "^4.1.1",
"mdast": "^3.0.0",
"react": "^19.2.5",
"remark-frontmatter": "^5.0.0",
"remark-mdx": "^3.1.1",
"remark-parse": "^11.0.0",
"remark-stringify": "^11.0.0",
"unified": "^11.0.5",
"unist-util-visit": "^5.1.0",
"yaml": "^2.7.1",
"zod": "^3.24.0"
},
"devDependencies": {
"@types/bun": "latest",
"@types/mdast": "^4.0.4",
"@types/node": "^20.11.24",
"@types/react": "^19.2.14",
"bun-types": "^1.3.12",
"tailwindcss": "3",
"typescript": "^5.7.3"
}
}