-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.8 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.8 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
{
"name": "@synthesisengineering/prism",
"version": "0.1.0-alpha.8",
"description": "Native-first HTML-in-Canvas runtime for managing HTML/CSS as canvas surfaces.",
"license": "MIT",
"type": "module",
"engines": {
"node": ">=22"
},
"main": "./packages/html-canvas/dist/index.js",
"types": "./packages/html-canvas/dist/index.d.ts",
"exports": {
".": {
"types": "./packages/html-canvas/dist/index.d.ts",
"import": "./packages/html-canvas/dist/index.js"
},
"./package.json": "./package.json"
},
"files": [
"packages/html-canvas/dist",
"packages/core/dist",
"packages/math/dist",
"README.md",
"LICENSE"
],
"sideEffects": false,
"homepage": "https://github.com/synthesiseng/prism#readme",
"bugs": {
"url": "https://github.com/synthesiseng/prism/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/synthesiseng/prism.git"
},
"keywords": [
"canvas",
"html-in-canvas",
"html",
"css",
"runtime",
"web-platform",
"graphics"
],
"packageManager": "pnpm@9.15.4",
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsc -b tsconfig.build.json",
"e2e": "playwright test",
"e2e:native": "playwright test --config playwright.native.config.ts",
"test": "vitest run",
"lint": "pnpm --filter @prism/docs source && eslint .",
"typecheck": "tsc -b tsconfig.build.json",
"format": "prettier --write .",
"prepack": "pnpm build && node scripts/prepare-package.mjs"
},
"devDependencies": {
"@eslint/js": "^9.18.0",
"@playwright/test": "^1.59.1",
"eslint": "^9.18.0",
"eslint-plugin-tsdoc": "^0.5.2",
"prettier": "^3.4.2",
"typescript": "^5.7.3",
"typescript-eslint": "^8.20.0",
"vite": "^6.0.7",
"vitest": "^2.1.8"
}
}