-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.29 KB
/
Copy pathpackage.json
File metadata and controls
91 lines (91 loc) · 2.29 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
{
"name": "@mevbg/design-essentials-vendor",
"title": "Design Essentials Vendor",
"version": "2.0.9",
"description": "Mev’s personal vendor of design system essentials.",
"keywords": [
"design essentials vendor",
"design essentials",
"design system",
"design tokens",
"vendor",
"factory",
"builder",
"generator",
"style-dictionary",
"style dictionary wrapper",
"mevbg",
"personal",
"css variables",
"javascript tokens",
"token pipeline",
"token automation",
"ui consistency",
"style config",
"build tool"
],
"homepage": "https://github.com/mevbg/design-essentials-vendor#readme",
"bugs": {
"url": "https://github.com/mevbg/design-essentials-vendor/issues"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/mevbg/design-essentials-vendor.git"
},
"license": "ISC",
"author": {
"name": "Martin Metodiev • Mev",
"email": "martin@mev.bg",
"url": "https://mev.bg"
},
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist"
],
"scripts": {
"dev:generate": "tsx index.ts",
"dev:watch": "nodemon --exec \"tsx index.ts\" --ext ts,js --watch src --watch client",
"build": "tsc",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"clean:all": "del-cli dist client/design/dist",
"clean:build": "del-cli dist",
"clean:dev": "del-cli client/design/dist"
},
"engines": {
"node": ">=22.x",
"npm": ">=10.x"
},
"dependencies": {
"@mevbg/wm": "^1.0.6",
"favicons": "^7.2.0",
"style-dictionary": "5.1.1"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@types/node": "^25.0.5",
"@typescript-eslint/eslint-plugin": "^8.52.0",
"@typescript-eslint/parser": "^8.52.0",
"chokidar": "^5.0.0",
"colorjs.io": "^0.6.0",
"del-cli": "^7.0.0",
"esbuild-register": "^3.6.0",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"globals": "^17.0.0",
"nodemon": "^3.1.11",
"prettier-plugin-organize-imports": "^4.3.0",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
}
}