This repository was archived by the owner on Feb 16, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.17 KB
/
Copy pathpackage.json
File metadata and controls
78 lines (78 loc) · 2.17 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
{
"name": "@netoum/corex",
"version": "0.0.4",
"description": "Accessible and unstyled UI components in Vanilla JavaScript. An implementation of ZagJS for building modern and flexible web interfaces.",
"license": "MIT",
"type": "module",
"main": "./dist/index.cjs.js",
"module": "./dist/index.mjs",
"unpkg": "./dist/index.min.js",
"jsdelivr": "./dist/index.min.js",
"exports": {
".": {
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
},
"./lib": {
"import": "./dist/lib/index.mjs",
"types": "./dist/lib/index.d.ts"
},
"./components/*": {
"import": "./dist/components/*.mjs",
"types": "./dist/components/*.d.ts"
}
},
"repository": {
"type": "git",
"url": "git://github.com/netoum/corex.git"
},
"author": "Netoum <info@netoum.com> (https://www.netoum.com)",
"files": [
"README.md",
"CHANGELOG.md",
"package.json",
"dist/*"
],
"scripts": {
"build": "node esbuild.config.js",
"lint": "eslint . --max-warnings 0",
"check-types": "tsc --noEmit"
},
"devDependencies": {
"@repo/eslint-config": "workspace:*",
"@repo/typescript-config": "workspace:*",
"esbuild": "^0.17.11",
"eslint": "^9.24.0",
"tsup": "^8.1.0",
"turbo": "^2.5.0",
"typescript": "5.8.2",
"fs-extra": "^11.3.0"
},
"dependencies": {
"@internationalized/date": "^3.8.1",
"@zag-js/i18n-utils": "^1.14.0",
"@types/prismjs": "^1.26.5",
"@zag-js/core": "^1.14.0",
"@zag-js/collection": "^1.14.0",
"@zag-js/store": "^1.14.0",
"@zag-js/types": "^1.14.0",
"@zag-js/utils": "^1.14.0",
"@zag-js/accordion": "^1.14.0",
"@zag-js/avatar": "^1.14.0",
"@zag-js/checkbox": "^1.14.0",
"@zag-js/clipboard": "^1.14.0",
"@zag-js/collapsible": "^1.14.0",
"@zag-js/combobox": "^1.14.0",
"@zag-js/dialog": "^1.14.0",
"@zag-js/date-picker": "^1.14.0",
"@zag-js/listbox": "^1.14.0",
"@zag-js/menu": "^1.14.0",
"@zag-js/switch": "^1.14.0",
"@zag-js/tabs": "^1.14.0",
"@zag-js/timer": "^1.14.0",
"@zag-js/toggle-group": "^1.14.0",
"@zag-js/tree-view": "^1.14.0",
"prismjs": "^1.30.0",
"pagefind": "^1.3.0"
}
}