-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 2.83 KB
/
Copy pathpackage.json
File metadata and controls
98 lines (98 loc) · 2.83 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
{
"name": "illustrator-pgf",
"version": "0.1.0",
"description": "Bounded, byte-lossless Adobe Illustrator native PGF/private-source parser, Scene IR and browser renderer SDK",
"type": "module",
"license": "MIT",
"author": "Flyfish Open Source Studio",
"repository": {
"type": "git",
"url": "git+https://github.com/flyfish-dev/illustrator-pgf.git"
},
"homepage": "https://github.com/flyfish-dev/illustrator-pgf#readme",
"bugs": {
"url": "https://github.com/flyfish-dev/illustrator-pgf/issues"
},
"publishConfig": {
"access": "public"
},
"sideEffects": false,
"main": "./dist/src/index.js",
"types": "./dist/src/index.d.ts",
"exports": {
".": {
"types": "./dist/src/index.d.ts",
"import": "./dist/src/index.js"
},
"./node": {
"types": "./dist/src/node.d.ts",
"import": "./dist/src/node.js"
},
"./worker": {
"types": "./dist/src/worker-entry.d.ts",
"import": "./dist/src/worker-entry.js"
},
"./worker-runtime": {
"types": "./dist/src/worker-runtime.d.ts",
"import": "./dist/src/worker-runtime.js"
},
"./file-viewer-adapter": {
"types": "./dist/integrations/file-viewer/index.d.ts",
"import": "./dist/integrations/file-viewer/index.js"
},
"./package.json": "./package.json"
},
"bin": {
"illustrator-pgf": "dist/src/cli.js"
},
"files": [
"dist",
"docs/api.md",
"docs/architecture.md",
"docs/corpus-policy.md",
"docs/format-versions.md",
"docs/implementation-report.md",
"docs/native-pgf-high-fidelity-development-plan.md",
"docs/operator-coverage.json",
"docs/release-checklist.md",
"docs/sample-benchmark.json",
"docs/sample-diff.json",
"docs/security.md",
"docs/support-matrix.md",
"examples",
"README.md",
"SECURITY.md",
"THIRD_PARTY_NOTICES.md",
"CHANGELOG.md",
"LICENSE",
"DEVELOPMENT-SPEC.md"
],
"scripts": {
"clean": "node -e \"const f=require('node:fs');for(const p of ['dist','dist-test'])f.rmSync(p,{recursive:true,force:true})\"",
"build": "npm run clean && tsc -p tsconfig.json",
"test": "npm run clean && tsc -p tsconfig.test.json && node --test dist-test/tests/*.test.js",
"check": "npm test && npm run build && npm pack --dry-run",
"prepublishOnly": "npm run check",
"inspect:sample": "npm run build && node dist/src/cli.js inspect corpus/synthetic/minimal.ai",
"pack:dry": "npm pack --dry-run",
"typecheck": "tsc --noEmit -p tsconfig.json",
"benchmark:sample": "npm run build && node dist/src/cli.js benchmark corpus/synthetic/minimal.ai 10"
},
"engines": {
"node": ">=22"
},
"devDependencies": {
"typescript": "^5.9.3"
},
"keywords": [
"adobe-illustrator",
"ai",
"pgf",
"parser",
"lossless-ast",
"scene-graph",
"canvas",
"svg",
"worker"
]
}