-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.33 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.33 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
{
"name": "canon-design",
"version": "1.0.0",
"type": "module",
"description": "The canonical design language for AI coding harnesses. 52 skills, 19 commands, 89 detector rules, shipping to 15 harnesses.",
"keywords": [
"design",
"design-system",
"ai",
"llm",
"claude-code",
"cursor",
"codex",
"copilot",
"windsurf",
"skills",
"frontend",
"accessibility",
"wcag",
"audit",
"lint",
"design-tokens"
],
"bin": {
"canon": "./bin/canon.mjs"
},
"main": "./lib/detector.mjs",
"exports": {
".": "./lib/detector.mjs",
"./detector": "./lib/detector.mjs"
},
"files": [
"bin/",
"lib/",
"scripts/",
"source/",
"dist/",
"skills-registry.json",
"README.md",
"LICENSE",
"DISCLAIMER.md"
],
"scripts": {
"build": "node scripts/build.mjs",
"test": "node --test tests/run.mjs",
"detect": "node bin/canon.mjs detect",
"prepublishOnly": "npm test && npm run build"
},
"author": {
"name": "Dragoon0x",
"url": "https://github.com/Dragoon0x"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Dragoon0x/canon"
},
"homepage": "https://dragoon0x.github.io/canon/",
"bugs": {
"url": "https://github.com/Dragoon0x/canon/issues"
},
"engines": {
"node": ">=18"
}
}