-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
83 lines (83 loc) · 2 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
{
"name": "remark-sandpack",
"version": "0.0.5",
"description": "Use sandpack in MDX",
"keywords": [
"remark",
"sandpack",
"MDX"
],
"homepage": "https://github.com/Xwil/remark-sandpack#readme",
"bugs": {
"url": "https://github.com/Xwil/remark-sandpack/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Xwil/remark-sandpack.git"
},
"license": "MIT",
"author": "Xwil <[email protected]>",
"sideEffects": false,
"type": "module",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs",
"types": "./dist/index.d.ts"
}
},
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"lint": "eslint --ext .js,.ts,.tsx .",
"prepare": "husky install",
"prepublishOnly": "pnpm build",
"release": "bumpp --commit --push --tag && pnpm publish",
"start": "tsx src/index.ts",
"test": "vitest",
"typecheck": "tsc --noEmit"
},
"lint-staged": {
"*.(js|ts|tsx|jsx)": [
"prettier --write",
"eslint --fix",
"eslint"
]
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"dependencies": {
"estree-util-value-to-estree": "^2.0.0",
"fs-readdir-recursive": "^1.1.0",
"unist-util-visit": "^4.1.1"
},
"devDependencies": {
"@babel/types": "^7.19.4",
"@types/fs-readdir-recursive": "^1.1.0",
"@types/node": "^18.11.0",
"@typescript-eslint/eslint-plugin": "^5.40.0",
"@typescript-eslint/parser": "^5.40.0",
"bumpp": "^8.2.1",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.25.0",
"eslint-config-alloy": "^4.7.0",
"eslint-define-config": "^1.7.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.1",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"tsup": "^8.2.4",
"tsx": "^3.10.1",
"typescript": "^5.5.4",
"vitest": "^0.24.3"
},
"packageManager": "[email protected]"
}