-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.14 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
{
"name": "@meep-tech/tsx",
"version": "0.1.0",
"description": "Typed JSX templating using TS.",
"author": "meep.tech",
"license": "MIT",
"repository": {
"type": "git",
"url": "github.com/meep-tech/tsx"
},
"main": "build/index.js",
"types": "build/types/index.d.ts",
"scripts": {
"init": "npm i",
"build": "tsc",
"check": "tsc --noEmit",
"clean": "npm run clean:lib && npm run clean:npm",
"init:clean": "npm i --no-save shx",
"clean:npm": "npm run init:clean && shx rm -rf package-lock.json && shx rm -rf node_modules",
"clean:lib": "npm run init:clean && shx rm -rf build",
"reinit": "npm run clean && npm run init",
"recheck": "npm run reinit && npm run check",
"rebuild": "npm run reinit && npm run build"
},
"dependencies": {
"@meep-tech/debug": "../debug",
"@meep-tech/types": "../types",
"@meep-tech/guards": "../guards",
"@wessberg/connection-observer": "^1.0.5"
},
"devDependencies": {
"typescript": "^5.6.3"
},
"keywords": [
"ts",
"js",
"tsx",
"jsx",
"react",
"components",
"ui",
"html",
"ux",
"gui",
"dom"
]
}