-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.62 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.62 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
{
"name": "@new-ui/foundations",
"version": "0.3.4",
"description": "New UI foundations",
"source": "src/index.scss",
"main": "dist/index.css",
"targets": {
"main": false
},
"files": [
"dist/",
"src/",
"README.md",
"LICENSE"
],
"workspaces": [
"packages/*"
],
"scripts": {
"watch": "parcel watch",
"build": "parcel build",
"lint": "stylelint \"**/*.scss\"",
"format": "prettier --write .",
"update:deps": "bunx npm-check-updates --deep --upgrade && bun install",
"build:packages": "bun run --filter './packages/*' build",
"clean:install": "rm -rf node_modules bun.lock .parcel-cache packages/*/node_modules packages/*/bun.lock packages/*/.parcel-cache && bun install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/create-new-ui/foundations.git"
},
"keywords": [
"foundations",
"typography",
"colors",
"spacings",
"ui",
"modular",
"type",
"design-tokens",
"mobile",
"reset",
"new"
],
"author": "@planetabhi",
"license": "MIT",
"bugs": {
"url": "https://github.com/create-new-ui/foundations/issues"
},
"homepage": "https://github.com/create-new-ui/foundations#readme",
"devDependencies": {
"@parcel/transformer-sass": "^2.16.3",
"autoprefixer": "^10.4.23",
"parcel": "^2.16.3",
"prettier": "^3.7.4",
"stylelint": "^16.26.1",
"stylelint-config-standard-scss": "^16.0.0"
},
"dependencies": {
"@new-ui/colors": "^2.2.3",
"@new-ui/effects": "^0.1.9",
"@new-ui/reset": "^0.1.1",
"@new-ui/spacings": "^0.1.8",
"@new-ui/typography": "^0.2.0"
}
}