-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.52 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
{
"name": "requirefire",
"version": "0.4.1",
"author": "Harry Brundage",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/gadget-inc/requirefire.git"
},
"publishConfig": {
"access": "public"
},
"types": "pkg/src/index.d.ts",
"main": "pkg/src/index.js",
"files": [
"pkg/src/*",
"Readme.md",
"Contributing.md",
"LICENSE.txt"
],
"scripts": {
"preinstall": "npx only-allow pnpm",
"build": "rm -rf pkg && tsc",
"watch": "tsc -w",
"test": "jest",
"typecheck": "tsc --noEmit",
"lint": "pnpm lint:prettier && pnpm run lint:eslint",
"lint:prettier": "prettier --check \"{src,spec}/**/*.{js,ts,tsx}\"",
"lint:eslint": "eslint --quiet --ext ts,tsx src",
"lint:fix": "prettier --write --check \"{src,spec}/**/*.{js,ts,tsx}\" && eslint --ext ts,tsx --fix src spec",
"prerelease": "gitpkg publish",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"@gadgetinc/eslint-config": "^0.6.1",
"@gadgetinc/prettier-config": "^0.4.0",
"@swc/core": "^1.3.85",
"@swc/jest": "^0.2.29",
"@types/fs-extra": "^11.0.2",
"@types/jest": "^29.5.4",
"@types/node": "^18.15.3",
"eslint": "^7.32.0",
"execa": "^5.1.1",
"fs-extra": "^11.1.1",
"jest": "^29.7.0",
"linked_module": "link:./spec/fixtures/linked_module",
"lodash": "*",
"npm": "^10.1.0",
"prettier": "^2.8.8",
"typescript": "^5.2.2"
},
"dependencies": {
"enhanced-resolve": "^5.15.0",
"is-builtin-module": "^3.2.1"
}
}