-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 2.63 KB
/
package.json
File metadata and controls
100 lines (100 loc) · 2.63 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "@madronejs/core",
"version": "2.0.0",
"description": "Object composition and reactivity framework.",
"private": false,
"license": "MIT",
"type": "module",
"main": "./dist/core.umd.js",
"module": "./dist/core.mjs",
"types": "./types/index.d.ts",
"exports": {
".": {
"types": "./types/index.d.ts",
"import": "./dist/core.js",
"require": "./dist/core.umd.cjs"
},
"./vue": {
"types": "./types/integrations/vue.d.ts",
"import": "./dist/vue.js",
"require": "./dist/vue.umd.cjs"
}
},
"peerDependencies": {
"vue": "^3.0.0"
},
"peerDependenciesMeta": {
"vue": {
"optional": true
}
},
"files": [
"dist/*.js",
"dist/*.cjs",
"types/**/*.d.ts"
],
"repository": {
"type": "git",
"url": "https://github.com/madronejs/madrone.git"
},
"bugs": {
"url": "https://github.com/madronejs/madrone/issues"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"scripts": {
"lint": "eslint src/",
"test": "vitest",
"test-ci": "CI=true NODE_ENV=test vitest run --coverage",
"docs": "typedoc --entryPoints src/index.ts",
"cleanup": "rm -rf ./dist/* && rm -rf ./types/*",
"cov": "CI=true NODE_ENV=test vitest run --coverage && open coverage/lcov-report/index.html",
"build": "vite build",
"build-types": "tsc -p ./tsconfig.types.json && tsc-alias -p tsconfig.types.json",
"build-all": "pnpm cleanup && pnpm build && pnpm build-types",
"check-updates": "pnpm -r -l outdated",
"check-upgrade": "pnpm -r -i --latest update",
"all": "pnpm build-types && pnpm lint && pnpm test-ci"
},
"keywords": [
"reactivity",
"composition",
"state management",
"madrone",
"vue"
],
"devDependencies": {
"@eslint/compat": "~2.0.5",
"@eslint/eslintrc": "~3.3.5",
"@eslint/js": "~10.0.1",
"@stylistic/eslint-plugin": "~5.10.0",
"@types/lodash": "~4.17.24",
"@vitest/coverage-v8": "~4.1.4",
"eslint": "~10.2.0",
"eslint-plugin-import": "~2.32.0",
"eslint-plugin-unicorn": "~64.0.0",
"globals": "~17.5.0",
"happy-dom": "~20.8.9",
"lodash": "~4.18.1",
"tsc-alias": "~1.8.16",
"typedoc": "~0.28.19",
"typescript": "~6.0.2",
"typescript-eslint": "8.58.1",
"vite": "~7.3.1",
"vitest": "~4.1.4",
"vue3": "npm:vue@~3.5.13"
},
"engines": {
"node": "^22.14 || ^24.14",
"pnpm": ">=10"
},
"packageManager": "pnpm@10.30.3",
"comment": "overrides should be reviewed and removed when dependent packages are updated",
"pnpm": {
"overrides": {
"mimimatch": ">9.0.7",
"rollup": "4.59.0"
}
}
}