-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
70 lines (70 loc) · 2.11 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "stage1",
"version": "0.7.2",
"type": "module",
"description": "High-performance JavaScript micro framework",
"repository": "maxmilton/stage1",
"homepage": "https://github.com/maxmilton/stage1",
"author": "Max Milton <max@happyhackers.xyz>",
"license": "MIT",
"main": "dist/index.js",
"exports": {
".": "./dist/index.js",
"./reconcile/keyed": "./dist/reconcile/keyed.js",
"./reconcile/non-keyed": "./dist/reconcile/non-keyed.js",
"./reconcile/reuse-nodes": "./dist/reconcile/reuse-nodes.js",
"./store": "./dist/store.js",
"./package.json": "./package.json"
},
"types": "dist/index.d.ts",
"typesVersions": {
"*": {
"reconcile/keyed": [
"dist/reconcile/keyed.d.ts"
],
"reconcile/non-keyed": [
"dist/reconcile/non-keyed.d.ts"
],
"reconcile/reuse-nodes": [
"dist/reconcile/reuse-nodes.d.ts"
],
"store": [
"dist/store.d.ts"
]
}
},
"files": [
"dist"
],
"scripts": {
"build": "pnpm run prebuild && node build.mjs && pnpm run postbuild",
"dev": "DEV_BUILD=1 node build.mjs",
"lint": "pnpm run lint:js && pnpm run lint:ts",
"lint:js": "eslint --ignore-path .gitignore --ext .ts,.js,.mjs,.cjs .",
"lint:ts": "tsc --project test --noEmit",
"postbuild": "tsc --emitDeclarationOnly",
"prebuild": "rm -rf dist; mkdir dist",
"test": "c8 --all --include=src --reporter=text --reporter=lcovonly uvu -r tsm -r \"$PWD\"/test/setup.ts test '\\.test\\.ts$'"
},
"devDependencies": {
"@types/jsdom": "21.1.1",
"@types/node": "20.4.1",
"@typescript-eslint/eslint-plugin": "5.61.0",
"@typescript-eslint/parser": "5.61.0",
"c8": "8.0.0",
"esbuild": "0.18.11",
"eslint": "8.44.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-airbnb-typescript": "17.0.0",
"eslint-config-prettier": "8.8.0",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-prettier": "5.0.0-alpha.2",
"jsdom": "22.1.0",
"nanospy": "1.0.0",
"prettier": "3.0.0",
"tsm": "2.3.0",
"typescript": "5.1.6",
"uvu": "0.5.6"
},
"sideEffects": false
}