-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.91 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.91 KB
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": "chkutils",
"version": "1.5.1",
"sideEffects": false,
"type": "module",
"module": "./dist/chkutils.esm.js",
"main": "./dist/chkutils.common.js",
"types": "./dist/types/index.d.ts",
"files": [
"dist"
],
"exports": {
".": {
"import": {
"node": "./dist/chkutils.common.js",
"default": "./dist/chkutils.esm.js"
},
"types": "./dist/types/index.d.ts",
"require": "./dist/chkutils.common.js"
}
},
"scripts": {
"dev": "vite",
"ts-gen-types": "tsc --declaration --emitDeclarationOnly --outDir ./dist",
"ts-check": "tsc",
"ts-gen-docs": "npm run build && npx api-extractor run",
"test-ui": "cypress open",
"test-run-units": "npx cypress run --component",
"test-local-publish-pkg": "npm run build && npm pack\ntar -ztvf your-package-1.0.0.tgz",
"build": "vite build && npm run ts-gen-types",
"build-preview": "vite preview",
"build-all-steps": "npm run test-run-units && npm run build && npm run ts-gen-types",
"docs:dev": "vitepress dev doc",
"docs:build": "vitepress build doc",
"docs:preview": "vitepress preview doc"
},
"devDependencies": {
"@microsoft/api-extractor": "^7.50.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/exec": "^7.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^11.0.1",
"@semantic-release/npm": "^12.0.1",
"@types/jest": "^29.5.14",
"@types/node": "^22.13.4",
"cypress": "^14.0.3",
"prettier": "^3.5.1",
"semantic-release": "^24.2.3",
"typescript": "~5.7.2",
"vite": "^6.1.0",
"vitepress": "^1.6.3"
},
"author": "Segey Zhuravlev",
"license": "MIT",
"description": "package for type checking and various utilities",
"keywords": [
"checkers",
"utils",
"helpers",
"modules"
],
"repository": {
"type": "git",
"url": "git+https://github.com/cossack-don/chkutils.git"
}
}