forked from svallory/marko-run-adapter-figma
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "@space/run-adapter-figma",
"infra": "polyrepo",
"type": "module",
"scripts": {
"build": "tsc -b && tsx scripts/build.ts",
"check": "pnpm run type && pnpm run test && pnpm run lint",
"clean": "packemon clean",
"coverage": "pnpm run test --coverage",
"format": "prettier --write ./src ./tests",
"lint": "eslint --cache --fix ./src ./tests",
"pack": "packemon pack --addEngines --declaration",
"prelease": "pnpm run pack && pnpm run check",
"release": "echo 'Customize your own release script!'",
"test:parser": "vitest src/lib/htmlparser2.ts",
"test": "vitest",
"benchmark": "sh ./scripts/benchmark.sh",
"type": "tsc && tsc -p ./tests",
"validate": "packemon validate",
"watch": "packemon watch"
},
"devDependencies": {
"@types/html-minifier-terser": "^7.0.2",
"@types/node": "^20.12.7",
"eslint": "^9.0.0",
"eslint-config-moon": "^3.0.0",
"packemon": "^4.0.1",
"prettier": "^3.2.5",
"prettier-config-moon": "^1.1.2",
"tsconfig-moon": "^1.3.0",
"typescript": "^5.4.5",
"vitest": "^1.5.0",
"dom-serializer": "^2.0.0",
"fast-glob": "^3.3.2",
"html-minifier-terser": "^7.2.0",
"htmlparser2": "^9.1.0",
"uglify-js": "^3.17.4"
},
"version": "0.0.9",
"description": "",
"keywords": [],
"author": "Saulo Vallory",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/svallory/marko-run-adapter-figma"
},
"packemon": {
"platform": "node",
"format": "mjs"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"typesVersions": {
"*": {
"*": [
"./dist/index.d.ts"
]
}
},
"types": "./dist/index.d.ts",
"main": "./src/index.ts",
"files": [
"dist"
],
"peerDependencies": {
"@marko/run": "^0.4.4"
},
"dependencies": {
"@marko/run-adapter-static": "^0.1.6",
"cheerio": "1.0.0-rc.12",
"esbuild": "0.20.2"
}
}