-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.55 KB
/
package.json
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
{
"type": "module",
"name": "rams",
"version": "0.0.0",
"description": "A Class-Less CSS Design System Framework",
"targets": {
"dev": {
"source": "src/index.html",
"distDir": "./dist/build"
},
"rams": {
"source": "src/docs/index.html",
"distDir": "./docs"
}
},
"scripts": {
"docs": "parcel --target rams --no-source-maps",
"dev": "parcel serve --target dev --no-source-maps",
"build": "parcel build --target dev --no-source-maps --no-content-hash --public-url /",
"rams": "parcel build --target rams --no-source-maps --no-content-hash --public-url /rams"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jacobxperez/rams.git"
},
"author": "Jacob Perez",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/jacobxperez/rams/issues"
},
"homepage": "https://jacobxperez.github.io/rams/",
"devDependencies": {
"@mischnic/parcel-namer-preserve-structure": "^0.2.0",
"@parcel/optimizer-terser": "^2.12.0",
"@parcel/transformer-typescript-tsc": "^2.12.0",
"parcel": "^2.12.0",
"parcel-optimizer-friendly-urls": "^0.2.0",
"postcss": "^8.4.47",
"postcss-advanced-variables": "^4.0.0",
"postcss-custom-selectors": "^8.0.1",
"postcss-import": "^16.1.0",
"postcss-mixins": "^11.0.3",
"postcss-nesting": "^13.0.0",
"postcss-url": "^10.1.3",
"prettier": "3.3.3"
}
}