-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.62 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.62 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
{
"name": "@uwrl/qc-utils",
"version": "0.0.19",
"description": "Quality Control Utilities",
"homepage": "https://github.com/hydroserver2/qc-utils#readme",
"bugs": {
"url": "https://github.com/hydroserver2/qc-utils/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hydroserver2/qc-utils.git"
},
"license": "ISC",
"author": "Maurier Ramirez",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"exports": {
".": {
"require": "./dist/index.cjs",
"import": "./dist/index.js"
}
},
"types": "./dist/types.d.ts",
"files": [
"dist"
],
"type": "module",
"scripts": {
"build": "npm run clean:dist && vite build --mode prod && vue-tsc --declaration --emitDeclarationOnly",
"pub": "npm publish --access public",
"clean:dist": "rimraf dist",
"clean:coverage": "rimraf coverage",
"preview": "vite preview",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "vitest run",
"coverage": "vitest run --coverage",
"up": "taze major -I",
"link": "npm link",
"dev": "vite build --watch --mode prod"
},
"dependencies": {
"rxjs": "^7.8.2",
"vite": "^8.0.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^25.0.0",
"eslint": "^10.0.0",
"eslint-plugin-cypress": "^6.0.0",
"eslint-plugin-prettier": "^5.4.1",
"happy-dom": "^20.9.0",
"rimraf": "^6.0.1",
"rollup-plugin-visualizer": "^7.0.0",
"stylelint": "^17.0.0",
"taze": "^19.1.0",
"typescript": "latest",
"typescript-eslint": "^8.58.2",
"vitest": "^4.0.1",
"vue-tsc": "^3.0.5"
}
}