This repository was archived by the owner on Mar 21, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.33 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.33 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
{
"version": "1.3.304",
"license": "MIT",
"bin": {
"orchard": "./dist/esm/index.js"
},
"files": [
"dist",
"src"
],
"engines": {
"node": ">=18"
},
"scripts": {
"build": "tsc -p tsconfig.json && yarn copy",
"copy": "yarn copy:config && yarn copy:templates && yarn copy:theme && yarn copy:orchard && yarn copy:ts",
"copy:config": "cp ./src/config.json ./dist/esm/config.json",
"copy:templates": "cp -r ./src/templates ./dist/esm",
"copy:theme": "cp -r ./src/theme ./dist/esm",
"copy:orchard": "cp ./orchard.theme.config.json ./dist/esm",
"copy:ts": "cp -r ./ts ./dist/esm",
"lint": "tcm lint src ts",
"test": "yarn generate && yarn generate -b partial",
"prepare": "yarn build",
"size": "size-limit",
"generate": "node ./dist/esm/index.js generate"
},
"name": "@techstack/theme",
"description": "A practical theme generator built from the ground up",
"author": "The-Code-Monkey",
"homepage": "https://github.com/The-Code-Monkey/TechStack/blob/dev/packages/theme/README.md",
"repository": {
"type": "git",
"url": "https://github.com/The-Code-Monkey/TechStack.git"
},
"bugs": {
"url": "https://github.com/The-Code-Monkey/TechStack/issues"
},
"publishConfig": {
"access": "public"
},
"size-limit": [
{
"path": "dist/esm/index.js",
"limit": "2 KB"
}
],
"devDependencies": {
"@size-limit/file": "11.2.0",
"@techstack/tcm-cli": "workspace:*",
"@tsconfig/recommended": "1.0.8",
"@types/fs-extra": "11.0.4",
"@types/lodash": "4.17.16",
"@types/lodash-es": "4.17.12",
"@types/tinycolor2": "1.4.6",
"@typescript-eslint/eslint-plugin": "7.12.0",
"@typescript-eslint/parser": "7.12.0",
"eslint": "8.57.1",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-prettier": "5.1.3",
"eslint-plugin-react": "7.34.2",
"prettier": "3.3.0",
"size-limit": "11.2.0",
"ts-jest": "29.1.4",
"tslib": "2.6.2",
"typescript": "5.4.5"
},
"dependencies": {
"fs-extra": "11.3.0",
"lodash": "4.17.21",
"lodash-es": "4.17.21",
"sade": "1.8.1",
"style-dictionary": "3.9.2",
"tinycolor2": "1.6.0"
},
"eslintConfig": {
"rules": {
"import/no-unresolved": "off"
}
},
"gitHead": "7bb2bc7bbce0432773369ca533adf6d1719e877a"
}