-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.71 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
{
"name": "@diplodoc/utils",
"version": "1.2.1",
"description": "Diplodoc cross-packages utils",
"homepage": "https://github.com/diplodoc-platform/utils",
"bugs": {
"url": "https://github.com/diplodoc-platform/utils/issues"
},
"keywords": [
"diplodoc",
"markdown",
"utils"
],
"types": "./build/cjs/index.d.ts",
"exports": {
".": {
"import": "./build/esm/index.js",
"require": "./build/cjs/index.js",
"default": "./build/esm/index.js"
}
},
"files": [
"build/"
],
"scripts": {
"test": "jest --coverage --verbose --silent=false",
"test:watch": "jest --watch --verbose --silent=false",
"clean": "rm -rf build",
"build": "npm run clean && run-p build:*",
"build:code": "node esbuild/bundle.mjs",
"build:esm": "tsc -p tsconfig.esm.json",
"build:cjs": "tsc -p tsconfig.cjs.json",
"prepublishOnly": "npm run build",
"lint": "lint",
"lint:fix": "lint fix",
"pre-commit": "lint update && lint-staged",
"prepare": "husky",
"typecheck": "tsc --noEmit"
},
"license": "MIT",
"devDependencies": {
"@diplodoc/lint": "^1.2.0",
"@diplodoc/tsconfig": "^1.0.2",
"@es-exec/api": "0.0.5",
"@esbuild-plugins/tsconfig-paths": "^0.1.2",
"@types/jest": "^27.5.2",
"@types/markdown-it": "12.2.3",
"@types/node": "^17.0.35",
"@types/react": "^18.3.5",
"esbuild": "^0.17.18",
"esbuild-jest": "^0.5.0",
"esbuild-node-externals": "^1.7.0",
"jest": "^28.1.0",
"npm-run-all": "^4.1.5",
"react": "^18.3.1",
"typescript": "^5.0.4"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0 || ^18.0.0"
},
"peerDependenciesMeta": {
"react": {
"optional": true
}
}
}