-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.56 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.56 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
{
"name": "@anyframe/css",
"version": "0.3.0",
"description": "Fast, lightweight, customizable, and modern utility-first CSS framework.",
"author": "NOuSantx <nousantx@gmail.com>",
"license": "MIT",
"homepage": "https://github.com/anyframe-org/css#readme",
"keywords": [
"css-framework",
"tenoxui",
"ui-library",
"utility-first",
"frontend"
],
"repository": {
"type": "git",
"url": "git+https://github.com/anyframe-org/css.git"
},
"bugs": {
"url": "https://github.com/anyframe-org/css/issues"
},
"files": [
"dist",
"package.json",
"README.md",
"LICENSE"
],
"types": "./dist/index.d.ts",
"main": "./dist/anycss.cjs",
"module": "./dist/anycss.es.js",
"browser": "./dist/anycss.iife.js",
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/anycss.cjs",
"import": "./dist/anycss.es.js"
}
},
"scripts": {
"dev": "vite build --watch",
"build": "vite build",
"build:prod": "pnpm type-check && pnpm build && pnpm build:types",
"type-check": "tsc --noEmit",
"build:types": "tsc --declaration --emitDeclarationOnly --outDir dist",
"test": "vitest run",
"test:watch": "vitest"
},
"peerDependencies": {
"@tenoxui/moxie": ">=0.5.0"
},
"devDependencies": {
"@nousantx/color-generator": "^1.6.0",
"@nousantx/someutils": "^0.7.0",
"typescript": "^5.7.3",
"vite": "^6.1.0",
"vitest": "^3.0.8"
},
"dependencies": {
"@tenoxui/moxie": "0.5.0",
"@tenoxui/types": "^0.1.2"
},
"packageManager": "pnpm@10.4.0"
}