-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
39 lines (39 loc) · 1.34 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
{
"name": "morphlex",
"version": "0.0.16",
"author": "Joel Drapper",
"license": "MIT",
"type": "module",
"description": "A tiny, optimal DOM morphing library written in TypeScript.",
"main": "dist/morphlex.min.js",
"types": "dist/morphlex.d.ts",
"homepage": "https://github.com/joeldrapper/morphlex",
"bugs": {
"url": "https://github.com/joeldrapper/morphlex/issues"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/joeldrapper"
},
"scripts": {
"test": "bun run web-test-runner test/**/*.test.js --node-resolve",
"build": "bun run tsc && bun run prettier --write ./src ./dist",
"watch": "bun run tsc -w",
"test:watch": "bun run test -- --watch",
"lint": "bun run prettier --check ./src ./dist ./test",
"minify": "bun run terser dist/morphlex.js -o dist/morphlex.min.js --config-file terser-config.json",
"prepare": "bun run build && bun run minify",
"ship": "bun run prepare && bun run test && bun run lint && npm publish",
"format": "bun run prettier --write ./src ./dist ./test",
"size": "bun run prepare && bun run gzip-size ./dist/morphlex.min.js --raw --include-original"
},
"devDependencies": {
"@open-wc/testing": "^3.0.0-next.5",
"@web/test-runner": "^0.18.0",
"gzip-size-cli": "^5.1.0",
"prettier": "^3.2.5",
"terser": "^5.28.1",
"typescript": "^5.4.2",
"typescript-eslint": "^7.0.2"
}
}