-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 1.89 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
71
72
73
74
75
76
77
{
"name": "@dumbjs/preland",
"version": "0.0.2",
"description": "",
"license": "MIT",
"type": "module",
"exports": {
".": {
"types": {
"require": "./dist/cjs/index.d.ts",
"import": "./dist/esm/index.d.ts"
},
"require": "./dist/cjs/index.js",
"import": "./dist/esm/index.mjs",
"default": "./dist/esm/index.mjs"
},
"./ast": {
"types": {
"require": "./dist/cjs/ast.d.ts",
"import": "./dist/esm/ast.d.ts"
},
"require": "./dist/cjs/ast.js",
"import": "./dist/esm/ast.mjs",
"default": "./dist/esm/ast.mjs"
},
"./package.json": "./package.json"
},
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.mjs",
"types": "./dist/esm/index.d.ts",
"files": [
"esm",
"dist",
"src"
],
"scripts": {
"build": "rollup -c",
"next": "bumpp",
"test": "uvu",
"test:ci": "c8 npm run test",
"fix": "eslint --fix .; prettier --write .",
"prepare": "npm run build",
"publint": "publint"
},
"prettier": "@barelyhuman/prettier-config",
"dependencies": {
"@barelyhuman/astring-jsx": "^2.0.1",
"acorn": "^8.12.1",
"acorn-class-fields": "^1.0.0",
"acorn-import-assertions": "^1.9.0",
"acorn-jsx": "^5.3.2",
"acorn-jsx-walk": "^2.0.0",
"acorn-static-class-features": "^1.0.0",
"acorn-walk": "^8.3.3",
"sucrase": "^3.35.0"
},
"devDependencies": {
"@barelyhuman/prettier-config": "^1.1.0",
"bumpp": "^9.4.1",
"c8": "^10.1.2",
"eslint": "^9.6.0",
"esm": "^3.2.25",
"mkdist": "^1.5.3",
"npm-run-all2": "^6.2.2",
"prettier": "^3.3.2",
"publint": "^0.2.8",
"rollup": "^4.18.1",
"rollup-node-externals": "0.0.1-2",
"rollup-plugin-copy": "^3.5.0",
"rollup-plugin-node-externals": "^7.1.2",
"typescript": "^5.5.3",
"uvu": "^0.5.6"
},
"publishConfig": {
"access": "public"
}
}