-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
45 lines (45 loc) · 1.18 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
{
"name": "import-string",
"author": "David Arenas <[email protected]> (https://github.com/Dave136)",
"version": "0.1.2",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"keywords": [
"import",
"import-string",
"utils",
"import-from-string"
],
"license": "MIT",
"homepage": "https://github.com/Dave136/import-string#import-string",
"repository": "https://github.com/Dave136/import-string",
"bugs": {
"url": "https://github.com/Dave136/import-string/issues"
},
"files": [
"dist"
],
"scripts": {
"build:dev": "rimraf lib && tsup --watch",
"build:prod": "rimraf dist && env NODE_ENV=production tsup",
"build:watch": "tsup --watch",
"lint:format": "prettier --loglevel warn --write \"./**/*.{ts,tsx,css,md,json}\"",
"lint": "pnpm lint:format",
"prepublishOnly": "pnpm lint && pnpm build:prod"
},
"devDependencies": {
"prettier": "^3.0.3",
"rimraf": "^5.0.5",
"ts-node-dev": "^2.0.0",
"tsup": "^7.2.0"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"dependencies": {
"@swc/wasm": "^1.3.91",
"module-from-string": "^3.3.0"
}
}