forked from thomas-lowry/figma-plugin-ds-svelte
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.29 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 2.29 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
{
"name": "@tokilabs/figma-plugin-sdk",
"version": "0.0.1",
"author": "Saulo Vallory <saulo@tokilabs.io>",
"contributors": [
{
"name": "Alberto Nunes",
"email": "alberto@tokilabs.io"
},
{
"name": "Yago Fernandes",
"email": "yago@tokilabs.io"
}
],
"scripts": {
"dev": "vite dev",
"$build": "nx exec -- pnpm run _build ",
"$build:watch": "nx exec -- pnpm run _build:watch ",
"preview": "vite preview",
"$package": "nx exec -- pnpm run _package ",
"prepublishOnly": "npm run package",
"$test": "nx exec -- playwright test",
"$check": "nx exec -- pnpm run _check ",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"$test:unit": "nx exec -- vitest",
"$lint": "nx exec -- pnpm run _lint ",
"$format": "nx exec -- prettier --plugin-search-dir . --write .",
"build": "vite build && npm run package",
"build:watch": "vite build -w && npm run package",
"package": "svelte-kit sync && svelte-package && publint",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"lint": "prettier --plugin-search-dir . --check . && eslint ."
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"svelte": "./dist/index.js"
}
},
"files": [
"dist",
"!dist/**/*.test.*",
"!dist/**/*.spec.*"
],
"peerDependencies": {
"svelte": "^3.54.0"
},
"devDependencies": {
"@playwright/test": "^1.28.1",
"@sveltejs/adapter-auto": "^2.0.0",
"@sveltejs/adapter-static": "^2.0.2",
"@sveltejs/kit": "^1.5.0",
"@sveltejs/package": "^2.0.0",
"@types/debug": "^4.1.12",
"@typescript-eslint/eslint-plugin": "^5.59.11",
"@typescript-eslint/parser": "^5.45.0",
"debug": "^4.3.4",
"eslint": "^8.28.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-svelte": "^2.26.0",
"nx": "16.8.0",
"nx-cloud": "latest",
"prettier": "^2.8.0",
"prettier-plugin-svelte": "^2.8.1",
"publint": "^0.1.9",
"svelte": "^3.54.0",
"svelte-check": "^3.0.1",
"svelte-click-outside": "^1.0.0",
"tslib": "^2.4.1",
"typescript": "^5.0.0",
"vite": "^4.3.0",
"vitest": "^0.25.3"
},
"svelte": "./dist/index.js",
"types": "./dist/index.d.ts",
"type": "module",
"nx": {
"targets": {
"build": {
"outputs": [
"{projectRoot}/dist"
]
},
"build:watch": {
"outputs": [
"{projectRoot}/dist"
]
}
}
}
}