-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.88 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2.88 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
{
"name": "@tempad-dev/extension",
"version": "0.17.2",
"private": true,
"description": "TemPad Dev browser extension.",
"type": "module",
"scripts": {
"dev": "wxt",
"build": "wxt build && pnpm run build:rewrite && pnpm run build:readme",
"build:rewrite": "esbuild ./rewrite/figma.ts --outfile=./dist/figma.js --bundle --format=iife && cp ./public/rules/figma.legacy.json ./dist/figma.json && cp ./public/rules/figma.legacy.json ./dist/figma.comply.json",
"build:readme": "tsx ./build/readme.ts",
"zip": "wxt zip",
"typecheck": "vue-tsc --noEmit && pnpm run check:worker-sandbox",
"postinstall": "wxt prepare",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts",
"lint:fix": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix",
"check:worker-sandbox": "tsx ./scripts/check-worker-sandbox.ts",
"check:worker-browser-sandbox": "tsx ./scripts/check-worker-sandbox.ts",
"test": "vitest --config vitest.config.ts",
"test:run": "vitest run --config vitest.config.ts",
"test:node": "vitest run --config vitest.node.config.ts",
"test:browser": "vitest run --config vitest.browser.config.ts",
"test:browser:headed": "vitest run --config vitest.browser.config.ts --browser.headless=false",
"test:setup": "pnpm exec playwright install chromium",
"test:coverage": "vitest run --config vitest.node.config.ts --coverage",
"format": "oxfmt --ignore-path ../../.gitignore \"!**/*.css\" && prettier --ignore-path ../../.gitignore --write \"**/*.css\"",
"format:check": "oxfmt --ignore-path ../../.gitignore --check \"!**/*.css\" && prettier --ignore-path ../../.gitignore --check \"**/*.css\""
},
"dependencies": {
"@tempad-dev/plugins": "workspace:^0.6.1",
"@tempad-dev/shared": "workspace:^0.1.0",
"@vueuse/core": "^14.0.0",
"overlayscrollbars": "^2.12.0",
"p-wait-for": "^6.0.0",
"stringify-object": "^6.0.0",
"vue": "^3.5.24"
},
"devDependencies": {
"@eslint/js": "^10.0.0",
"@figma/plugin-typings": "^1.121.0",
"@rushstack/eslint-patch": "^1.15.0",
"@types/node": "^24.10.1",
"@types/prismjs": "^1.26.5",
"@types/stringify-object": "^4.0.5",
"@vitest/browser-playwright": "4.0.18",
"@vue/eslint-config-prettier": "^10.2.0",
"@vue/eslint-config-typescript": "^14.6.0",
"@wxt-dev/module-vue": "^1.0.3",
"comment-mark": "^2.0.1",
"esbuild": "^0.27.0",
"eslint": "^10.0.0",
"eslint-config-flat-gitignore": "^2.1.0",
"eslint-plugin-perfectionist": "^5.0.0",
"eslint-plugin-vue": "^10.5.1",
"p-limit": "^7.2.0",
"pino": "^10.0.0",
"playwright-chromium": "^1.56.1",
"proper-lockfile": "^4.1.2",
"tsx": "^4.20.6",
"typescript": "^5.9.3",
"typescript-eslint": "^8.19.1",
"vite-plugin-css-injected-by-js": "^3.5.2",
"vitest": "4.0.18",
"vue-tsc": "^3.1.4",
"wxt": "^0.20.11",
"zod": "^4.1.12"
}
}