-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.84 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.84 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
{
"name": "workflowx",
"version": "0.0.0",
"description": "The core component of Archives",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "npm run clean & rollup -c",
"clean": "rimraf dist",
"dev": "npm run clean & rollup -c -w",
"format": "prettier --write . --ignore-path .gitignore",
"lint": "eslint . --cache --cache-location .cache/.eslintcache --report-unused-disable-directives --ext .ts,.js,.jsx,.cjs,.mjs --ignore-path .eslintignore",
"test": "jest --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Yuba-Technology/WorkflowX.git"
},
"keywords": [
"Archives",
"TypeScript"
],
"author": "Yuba Technology",
"license": "AGPL-3.0-or-later",
"bugs": {
"url": "https://github.com/Yuba-Technology/WorkflowX/issues"
},
"homepage": "https://github.com/Yuba-Technology/WorkflowX#readme",
"devDependencies": {
"@rollup/plugin-commonjs": "^28.0.2",
"@rollup/plugin-node-resolve": "^16.0.0",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.1.2",
"@types/jest": "^29.5.14",
"eslint": "^8.57.1",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jest": "^28.11.0",
"eslint-plugin-markdown": "^5.1.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-unicorn": "^56.0.1",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"prettier": "^3.4.2",
"rimraf": "^6.0.1",
"rollup": "^4.32.0",
"ts-jest": "^29.2.5",
"tslib": "^2.8.1",
"typescript": "^5.7.3",
"xo": "^0.60.0"
}
}