This repository was archived by the owner on Oct 18, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.39 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.39 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
{
"name": "@esbuild-kit/core-utils",
"version": "0.0.0-semantic-release",
"publishConfig": {
"access": "public"
},
"license": "MIT",
"repository": "esbuild-kit/core-utils",
"author": {
"name": "Hiroki Osame",
"email": "hiroki.osame@gmail.com"
},
"files": [
"dist"
],
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"imports": {
"#esbuild-kit/core-utils": {
"types": "./src/index.ts",
"development": "./src/index.ts",
"default": "./dist/index.js"
}
},
"scripts": {
"build": "pkgroll --target node12.20 --minify",
"lint": "eslint --cache .",
"type-check": "tsc --noEmit",
"test": "tsx --no-cache tests",
"dev": "tsx watch --no-cache --conditions=development tests",
"prepack": "pnpm build && clean-pkg-json"
},
"dependencies": {
"esbuild": "~0.18.20",
"source-map-support": "^0.5.21"
},
"devDependencies": {
"@ampproject/remapping": "^2.2.1",
"@pvtnbr/eslint-config": "^0.36.0",
"@types/node": "^20.6.0",
"@types/source-map-support": "^0.5.7",
"clean-pkg-json": "^1.2.0",
"es-module-lexer": "^1.3.1",
"eslint": "^8.49.0",
"fs-fixture": "^1.2.0",
"fs-require": "^1.6.0",
"magic-string": "^0.30.3",
"manten": "^1.1.0",
"memfs": "^4.2.1",
"pkgroll": "^1.11.0",
"tsx": "^3.12.8",
"typescript": "^5.2.2"
},
"eslintConfig": {
"extends": "@pvtnbr"
}
}