-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 1.26 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
{
"name": "@9elt/miniframe",
"version": "0.9.9",
"description": "Everything you need to create nodes with states, in 200 LOC",
"main": "./dist/esm/index.js",
"types": "./dist/esm/index.d.ts",
"exports": {
".": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js"
},
"./jsx-runtime": {
"import": "./dist/esm/jsx-runtime.js",
"require": "./dist/cjs/jsx-runtime.js"
},
"./jsx-dev-runtime": {
"import": "./dist/esm/jsx-runtime.js",
"require": "./dist/cjs/jsx-runtime.js"
}
},
"scripts": {
"test:js": "for f in tests/*.ts; do bun \"$f\"; done",
"test:ts": "tsc",
"test": "npm run test:js && npm run test:ts",
"build": "sh scripts/build.sh",
"generate:types": "bun scripts/generate.types.ts >index.d.ts",
"pub": "npm run build && npm run test && npm publish"
},
"author": "Lorenzo Cicuttin",
"license": "MIT",
"keywords": [
"state",
"createNode"
],
"readme": "./README.md",
"homepage": "https://github.com/9elt/miniframe#readme",
"repository": "github:9elt/miniframe",
"devDependencies": {
"jsdom": "^22.1.0"
}
}