-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.17 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
{
"name": "@package/plugins",
"version": "0.0.1",
"scripts": {
"symlink:dotfiles": "ln -s ~/.yal ",
"install:plugin": "run() { yarn build $1 && yarn copy:dist; }; run",
"install:plugins": "yarn build && yarn copy:dist",
"build": "npx tsx build-plugins.ts",
"build:watch": "npx tsx build-plugins.ts --watch",
"copy:dist": "cp -r ./dist/* ~/.yal/plugins/"
},
"workspaces": {
"packages": [
"plugins/*"
]
},
"private": true,
"devDependencies": {
"@fal-works/esbuild-plugin-global-externals": "^2.1.2",
"@yal-app/types": "0.0.21",
"@types/node": "18.13.0",
"@types/prompts": "2.4.1"
},
"dependencies": {
"esbuild": "^0.14.38",
"esbuild-svelte": "^0.7.1",
"svelte": "^3.48.0",
"@tsconfig/svelte": "3.0.0",
"svelte-preprocess": "5.0.1",
"esbuild-plugin-solid": "^0.5.0",
"prompts": "2.4.2",
"typescript": "4.9.5",
"tsx": "3.12.1"
},
"prettier": {
"singleQuote": true
},
"targets": {
"browser": {
"includeNodeModules": true,
"outputFormat": "esmodule",
"engines": {
"browsers": [
"> 1%",
"not dead"
]
}
}
}
}