generated from diplodoc-platform/package-template
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
60 lines (60 loc) · 1.58 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
{
"name": "@diplodoc/cut-extension",
"version": "0.2.5",
"description": "Cut extension for Diplodoc platform",
"main": "plugin/index.js",
"types": "plugin/index.d.ts",
"exports": {
".": {
"types": "./plugin/index.d.ts",
"default": "./plugin/index.js"
},
"./runtime": {
"types": "./runtime/index.d.ts",
"style": "./runtime/index.css",
"default": "./runtime/index.js"
}
},
"homepage": "https://diplodoc.com/",
"repository": {
"type": "git",
"url": "git+https://github.com/diplodoc-platform/cut-extension.git"
},
"bugs": {
"url": "https://github.com/diplodoc-platform/diplodoc/issues"
},
"author": "",
"license": "MIT",
"files": [
"plugin",
"runtime"
],
"scripts": {
"init": "husky install && npm run build",
"precommit": "npm run lint && npm run test",
"build": "run-p build:*",
"build:js": "./esbuild/build.mjs",
"build:declarations": "tsc --emitDeclarationOnly --outDir .",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"test": "cd tests && npm ci && jest",
"typecheck": "tsc --noEmit",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"@diplodoc/eslint-config": "^2.0.0",
"@diplodoc/prettier-config": "^2.0.0",
"@diplodoc/tsconfig": "^1.0.2",
"@types/markdown-it": "^13.0.8",
"esbuild": "^0.22.0",
"esbuild-sass-plugin": "^3.3.1",
"husky": "^9.0.11",
"markdown-it": "^13.0.2",
"npm-run-all": "^4.1.5",
"ts-jest": "^29.2.2",
"typescript": "^5.5.3"
},
"peerDependencies": {
"@diplodoc/utils": "1.0.0"
}
}