@teamturing/token-studio 1.1.0
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/LICENSE +21 -0
- package/README.md +1 -0
- package/dist/foundation/breakpoint/device.d.ts +6 -0
- package/dist/foundation/breakpoint/index.d.ts +8 -0
- package/dist/foundation/gradient/colorStopList/index.d.ts +7 -0
- package/dist/foundation/gradient/direction/index.d.ts +7 -0
- package/dist/foundation/gradient/index.d.ts +14 -0
- package/dist/foundation/opacity/index.d.ts +4 -0
- package/dist/foundation/palette/index.d.ts +148 -0
- package/dist/foundation/rounding/index.d.ts +12 -0
- package/dist/foundation/shadow/index.d.ts +4 -0
- package/dist/foundation/spacing/index.d.ts +29 -0
- package/dist/foundation/typography/fontSize/index.d.ts +17 -0
- package/dist/foundation/typography/fontWeight/index.d.ts +12 -0
- package/dist/foundation/typography/index.d.ts +32 -0
- package/dist/foundation/typography/lineHeight/index.d.ts +5 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +651 -0
- package/dist/token/breakpoints/index.d.ts +4 -0
- package/dist/token/color/index.d.ts +253 -0
- package/dist/token/elevation/index.d.ts +18 -0
- package/dist/token/gradient/index.d.ts +44 -0
- package/dist/token/index.d.ts +15 -0
- package/dist/token/opacity/index.d.ts +11 -0
- package/dist/token/radii/index.d.ts +13 -0
- package/dist/token/space/index.d.ts +53 -0
- package/dist/token/typography/fontSizes.d.ts +15 -0
- package/dist/token/typography/fontWeights.d.ts +7 -0
- package/dist/token/typography/index.d.ts +134 -0
- package/dist/token/typography/lineHeights.d.ts +6 -0
- package/esm/foundation/breakpoint/device.js +7 -0
- package/esm/foundation/gradient/colorStopList/index.js +8 -0
- package/esm/foundation/gradient/direction/index.js +8 -0
- package/esm/foundation/opacity/index.js +5 -0
- package/esm/foundation/palette/index.js +90 -0
- package/esm/foundation/rounding/index.js +13 -0
- package/esm/foundation/shadow/index.js +5 -0
- package/esm/foundation/spacing/index.js +56 -0
- package/esm/foundation/typography/fontSize/index.js +18 -0
- package/esm/foundation/typography/fontWeight/index.js +13 -0
- package/esm/foundation/typography/lineHeight/index.js +6 -0
- package/esm/index.js +11 -0
- package/esm/token/breakpoints/index.js +6 -0
- package/esm/token/color/index.js +140 -0
- package/esm/token/elevation/index.js +16 -0
- package/esm/token/gradient/index.js +33 -0
- package/esm/token/opacity/index.js +10 -0
- package/esm/token/radii/index.js +15 -0
- package/esm/token/space/index.js +55 -0
- package/esm/token/typography/fontSizes.js +17 -0
- package/esm/token/typography/fontWeights.js +9 -0
- package/esm/token/typography/index.js +133 -0
- package/esm/token/typography/lineHeights.js +8 -0
- package/package.json +32 -0
package/package.json
ADDED
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@teamturing/token-studio",
|
|
3
|
+
"version": "1.1.0",
|
|
4
|
+
"description": "Foundations, tokens for Mathking design system",
|
|
5
|
+
"author": "Sungchang Park <psch300@gmail.com> (https://github.com/psch300)",
|
|
6
|
+
"homepage": "https://github.com/weareteamturing/bombe#readme",
|
|
7
|
+
"license": "MIT",
|
|
8
|
+
"main": "./dist/index.js",
|
|
9
|
+
"files": [
|
|
10
|
+
"dist",
|
|
11
|
+
"esm"
|
|
12
|
+
],
|
|
13
|
+
"exports": {
|
|
14
|
+
"require": "./dist/index.js",
|
|
15
|
+
"types": "./dist/index.d.ts",
|
|
16
|
+
"import": "./esm/index.js"
|
|
17
|
+
},
|
|
18
|
+
"repository": {
|
|
19
|
+
"type": "git",
|
|
20
|
+
"url": "git+https://github.com/weareteamturing/bombe.git"
|
|
21
|
+
},
|
|
22
|
+
"scripts": {
|
|
23
|
+
"check:lint": "eslint ./src --cache",
|
|
24
|
+
"check:type": "tsc --noEmit",
|
|
25
|
+
"test": "jest --config ./jest.config.js",
|
|
26
|
+
"build": "rm -rf dist esm && tsc --project tsconfig.cjs.json --declaration --emitDeclarationOnly --declarationDir dist && rollup --config rollup.config.js"
|
|
27
|
+
},
|
|
28
|
+
"bugs": {
|
|
29
|
+
"url": "https://github.com/weareteamturing/bombe/issues"
|
|
30
|
+
},
|
|
31
|
+
"gitHead": "7b73854d51bba4e8d0c6e6a11f583110476f7507"
|
|
32
|
+
}
|