-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
118 lines (118 loc) · 3.08 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "@strapi/pack-up",
"version": "5.0.2",
"description": "Simple tools for creating interoperable CJS & ESM packages.",
"keywords": [
"strapi",
"package",
"cjs",
"esm",
"bundling",
"build",
"interoperable",
"tools"
],
"repository": {
"type": "git",
"url": "https://github.com/strapi/pack-up.git"
},
"license": "SEE LICENSE IN LICENSE",
"author": {
"name": "Strapi Solutions SAS",
"email": "[email protected]",
"url": "https://strapi.io"
},
"maintainers": [
{
"name": "Strapi Solutions SAS",
"email": "[email protected]",
"url": "https://strapi.io"
}
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"source": "./src/index.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js",
"default": "./dist/index.js"
},
"./package.json": "./package.json"
},
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"source": "./src/index.ts",
"types": "./dist/index.d.ts",
"bin": {
"pack-up": "./bin/pack-up.js"
},
"files": [
"bin",
"dist"
],
"scripts": {
"build": "node -r esbuild-register scripts/build",
"check": "node -r esbuild-register scripts/check",
"lint": "eslint .",
"prepare": "husky",
"prerelease:enter": "changeset pre enter",
"prerelease:exit": "changeset pre exit",
"prettier:check": "prettier --check .",
"prettier:write": "prettier --write .",
"release:add": "changeset add",
"release:publish": "changeset publish",
"release:version": "changeset version",
"test:ts": "tsc --noEmit",
"test:unit": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"watch": "node -r esbuild-register scripts/watch"
},
"dependencies": {
"@vitejs/plugin-react-swc": "3.7.0",
"boxen": "5.1.2",
"browserslist-to-esbuild": "1.2.0",
"chalk": "4.1.2",
"chokidar": "4.0.1",
"commander": "8.3.0",
"esbuild": "0.20.2",
"esbuild-register": "3.5.0",
"get-latest-version": "5.1.0",
"git-url-parse": "13.1.1",
"ini": "4.1.2",
"ora": "5.4.1",
"outdent": "0.8.0",
"pkg-up": "3.1.0",
"prettier": "3.3.3",
"prettier-plugin-packagejson": "2.5.2",
"prompts": "2.4.2",
"rxjs": "7.8.1",
"typescript": "5.4.4",
"vite": "5.4.8",
"yup": "0.32.9"
},
"devDependencies": {
"@changesets/changelog-git": "^0.2.0",
"@changesets/cli": "^2.27.8",
"@commitlint/cli": "^19.2.1",
"@commitlint/config-conventional": "^19.1.0",
"@strapi/eslint-config": "^1.0.1",
"@strapi/pack-up": "workspace:*",
"@swc/core": "^1.4.13",
"@swc/jest": "^0.2.36",
"@types/git-url-parse": "9.0.3",
"@types/ini": "4.1.0",
"@types/jest": "^29.5.13",
"@types/prettier": "^2.0.0",
"@types/prompts": "2.4.9",
"@typescript-eslint/eslint-plugin": "^7.6.0",
"@typescript-eslint/parser": "^7.6.0",
"eslint": "^8.57.1",
"eslint-plugin-rxjs": "^5.0.3",
"husky": "^9.0.11",
"jest": "^29.7.0",
"lint-staged": "^15.2.10"
},
"packageManager": "[email protected]",
"publishConfig": {
"access": "public"
}
}