@triptease/stylesheet 1.0.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,37 @@
1
+ {
2
+ "name": "@triptease/stylesheet",
3
+ "version": "1.0.6",
4
+ "description": "The stylesheet for the Triptease design system",
5
+ "main": "dist/triptease.css",
6
+ "type": "module",
7
+ "files": [
8
+ "dist"
9
+ ],
10
+ "license": "MIT",
11
+ "exports": {
12
+ ".": "./dist/triptease.css"
13
+ },
14
+ "devDependencies": {
15
+ "autoprefixer": "^10.4.20",
16
+ "concurrently": "^9.1.0",
17
+ "lit": "^3.3.0",
18
+ "postcss": "^8.4.49",
19
+ "postcss-banner": "^4.0.1",
20
+ "postcss-cli": "^11.0.0",
21
+ "postcss-copy-assets": "^0.3.1",
22
+ "postcss-import": "^16.1.0",
23
+ "postcss-import-ext-glob": "^2.1.1",
24
+ "style-dictionary": "^4.3.3"
25
+ },
26
+ "scripts": {
27
+ "build:tokens": "style-dictionary build --config tokens/config.js",
28
+ "build:css": "postcss --dir dist/ src/*.css",
29
+ "build": "yarn build:tokens && yarn build:css",
30
+ "serve:css": "yarn build -w",
31
+ "serve:http": "http-server dist -p 8081",
32
+ "serve": "concurrently \"yarn serve:css\" \"yarn serve:http\""
33
+ },
34
+ "publishConfig": {
35
+ "access": "public"
36
+ }
37
+ }