-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.03 KB
/
Copy pathpackage.json
File metadata and controls
92 lines (92 loc) · 2.03 KB
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "bundle-import",
"type": "module",
"version": "0.0.2",
"packageManager": "pnpm@9.12.1",
"description": "Bundle and load a file using the import-from-string.",
"imports": {
"#*": "./*"
},
"author": "CondorHero",
"license": "MIT",
"homepage": "https://github.com/condorheroblog/bundle-import#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/condorheroblog/bundle-import.git"
},
"bugs": {
"url": "https://github.com/condorheroblog/bundle-import/issues"
},
"keywords": [
"module-from-string",
"load-from-config",
"bundle-import",
"bundle-require",
"bundle-import"
],
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"types": "dist/index.d.cts",
"typesVersions": {
"*": {
"*": [
"./dist/*",
"./dist/index.d.ts"
]
}
},
"files": [
"dist"
],
"scripts": {
"prepublishOnly": "nr build",
"dev:esm": "esno playground/index.mjs",
"dev:cjs": "esno playground/index.cjs",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "vitest",
"build": "rimraf dist && rollup -c",
"build:watch": "rimraf dist && rollup -c -w",
"typecheck": "tsc --noEmit",
"release": "bumpp -r && pnpm -r publish --access public"
},
"dependencies": {
"get-tsconfig": "^4.8.1",
"import-from-string": "^0.0.5"
},
"devDependencies": {
"@antfu/eslint-config": "^3.8.0",
"@rollup/plugin-json": "^6.1.0",
"@types/node": "^22.9.0",
"bumpp": "^9.8.1",
"eslint": "^9.14.0",
"esno": "^4.8.0",
"lint-staged": "^15.2.10",
"rimraf": "^6.0.1",
"rollup": "^4.24.4",
"rollup-plugin-dts": "^6.1.1",
"rollup-plugin-esbuild": "^6.1.1",
"rollup-plugin-node-externals": "^7.1.3",
"simple-git-hooks": "^2.11.1",
"typescript": "^5.6.3",
"vitest": "^2.1.4"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*.{ts,js,mjs,cjs,json,md}": [
"eslint --fix"
]
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
}
}