-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.24 KB
/
package.json
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
{
"name": "figma-colrv1",
"version": "0.1.0",
"description": "Figma plugin to support COLRv1 fonts including variable fonts",
"homepage": "https://github.com/Lorp/figma-colrv1",
"main": "ui.html",
"scripts": {
"build": "npx parcel build",
"watch": "npm run build -- --watch"
},
"targets": {
"ui": {
"source": "./src/ui.html",
"engines": {
"browsers": "> 0.25%, not dead"
},
"distDir": "."
},
"figma": {
"source": "./src/code.ts",
"engines": {
"browsers": ">= 50%"
},
"distDir": "./dist"
}
},
"author": "Laurence Penney <[email protected]>",
"license": "",
"browserslist": {
"production": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"dependencies": {
"@types/node": "^20.10.1",
"brotli": "^1.3.3",
"samsa-core": "^2.0.4"
},
"devDependencies": {
"@figma/plugin-typings": "^1.81.0",
"@parcel/optimizer-data-url": "^2.12.0",
"@parcel/transformer-inline": "^2.12.0",
"@parcel/transformer-inline-string": "^2.12.0",
"@types/brotli": "^1.3.4",
"brotli": "^1.3.3",
"parcel": "^2.12.0",
"ts-loader": "^9.4.4",
"typescript": "^5.1.6"
}
}