-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.62 KB
/
package.json
File metadata and controls
65 lines (65 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
{
"name": "@new-ui/foundations",
"version": "0.3.6",
"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_WORKERS=0 parcel watch",
"build": "PARCEL_WORKERS=0 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/CreateNewUI/foundations.git"
},
"keywords": [
"foundations",
"typography",
"colors",
"spacings",
"ui",
"modular",
"type",
"design-tokens",
"mobile",
"reset",
"new"
],
"author": "@planetabhi",
"license": "MIT",
"bugs": {
"url": "https://github.com/CreateNewUI/foundations/issues"
},
"homepage": "https://github.com/CreateNewUI/foundations#readme",
"devDependencies": {
"@parcel/transformer-sass": "^2.16.4",
"parcel": "^2.16.4",
"prettier": "^3.8.3",
"stylelint": "^17.9.1",
"stylelint-config-standard-scss": "^17.0.0"
},
"dependencies": {
"@new-ui/colors": "^2.2.5",
"@new-ui/effects": "^0.1.11",
"@new-ui/reset": "^0.1.2",
"@new-ui/spacings": "^0.1.9",
"@new-ui/typography": "^0.2.1"
}
}