-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
22 lines (22 loc) · 735 Bytes
/
package.json
File metadata and controls
22 lines (22 loc) · 735 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"name": "shortcode",
"version": "0.0.1",
"description": "A shortcode library for vanilla JS.",
"main": "index.js",
"scripts": {
"tsc": "tsc --project tsconfig.json --noEmit",
"esbuild": "esbuild index.ts --bundle --format=esm --minify --sourcemap=external --outfile=dist/lib.js",
"build": "yarn run tsc && yarn run esbuild",
"watch": "concurrently --raw 'tsc --watch --project tsconfig.json --noEmit --preserveWatchOutput' 'wds --watch --node-resolve'"
},
"author": "Claire Lipskey <claire.lipskey@gmail.com>",
"license": "MIT",
"dependencies": {
"esbuild": "^0.12.15"
},
"devDependencies": {
"@web/dev-server": "^0.1.20",
"concurrently": "^6.2.0",
"typescript": "^4.3.5"
}
}