-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.16 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
78
79
{
"name": "@omnidev/knit",
"version": "0.1.2",
"description": "🧶 Knit local dependencies together",
"license": "MIT",
"homepage": "https://github.com/coopbri/knit",
"repository": {
"type": "git",
"url": "https://github.com/coopbri/knit.git"
},
"main": "build/knit.js",
"module": "build/knit.mjs",
"types": "build/knit.d.ts",
"bin": "build/knit.js",
"files": [
"build"
],
"exports": {
".": {
"require": "./build/knit.js",
"import": "./build/knit.mjs"
}
},
"scripts": {
"dev": "yarn build --watch",
"build": "tsup",
"format": "prettier . --write",
"lint": "eslint --ext .ts src",
"test": "jest",
"test:coverage": "yarn test --coverage",
"test:ci": "yarn test --ci",
"test:watch": "yarn test --watch",
"release": "yarn build && changeset publish",
"prepare": "husky install"
},
"dependencies": {
"@npmcli/arborist": "^6.3.0",
"chalk": "4.1.0",
"detect-indent": "6.1.0",
"fs-extra": "^11.1.1",
"glob": "^10.3.3",
"ignore": "^5.2.4",
"ini": "^4.1.1",
"npm-packlist": "^7.0.4",
"yargs": "^17.7.2"
},
"devDependencies": {
"@changesets/changelog-github": "^0.4.8",
"@changesets/cli": "^2.26.2",
"@swc/core": "^1.3.74",
"@swc/jest": "^0.2.28",
"@types/fs-extra": "^11.0.1",
"@types/glob": "^8.1.0",
"@types/ini": "^1.3.31",
"@types/jest": "^29.5.3",
"@types/node": "^20.4.8",
"@types/npm-packlist": "^7.0.0",
"@types/npmcli__arborist": "^5.6.1",
"@types/yargs": "^17.0.24",
"@typescript-eslint/eslint-plugin": "^6.3.0",
"@typescript-eslint/parser": "^6.3.0",
"eslint": "^8.46.0",
"eslint-config-prettier": "^9.0.0",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-import": "^2.28.0",
"eslint-plugin-jest": "^27.2.3",
"eslint-plugin-jest-dom": "^5.0.2",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-typescript-sort-keys": "^2.3.0",
"eslint-plugin-unused-imports": "^3.0.0",
"husky": "^8.0.3",
"jest": "^29.6.2",
"lint-staged": "^13.2.3",
"prettier": "^3.0.1",
"ts-node": "^10.9.1",
"tsup": "^7.2.0",
"typescript": "^5.1.6"
}
}