@liner-fe/design-token-rn 1.0.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/README.md ADDED
@@ -0,0 +1,3 @@
1
+ # design-token-rn
2
+
3
+ React Native의 Design Token 패키지입니다.
package/lib/index.d.ts ADDED
@@ -0,0 +1 @@
1
+ export {};
package/lib/index.mjs ADDED
@@ -0,0 +1 @@
1
+ //# sourceMappingURL=index.mjs.map
@@ -0,0 +1,7 @@
1
+ {
2
+ "version": 3,
3
+ "sources": [],
4
+ "sourcesContent": [],
5
+ "mappings": "",
6
+ "names": []
7
+ }
package/package.json ADDED
@@ -0,0 +1,48 @@
1
+ {
2
+ "name": "@liner-fe/design-token-rn",
3
+ "version": "1.0.0",
4
+ "devDependencies": {
5
+ "@eslint/js": "^9.22.0",
6
+ "@internal/design-token-primitive": "workspace:^",
7
+ "@types/react": "^18.2.48",
8
+ "esbuild": "^0.25.0",
9
+ "eslint": "^9.22.0",
10
+ "eslint-plugin-react": "^7.37.4",
11
+ "globals": "^16.0.0",
12
+ "prettier": "2.8.8",
13
+ "react": "^18.2.0",
14
+ "recoil": "^0.5.2",
15
+ "ts-node": "^10.9.2",
16
+ "tsc-alias": "^1.8.10",
17
+ "typescript": "^5.1.3",
18
+ "typescript-eslint": "^8.26.1"
19
+ },
20
+ "peerDependencies": {
21
+ "react": "^18",
22
+ "recoil": "^0.5.2"
23
+ },
24
+ "scripts": {
25
+ "build": "node build.mjs && tsc -p tsconfig.build.json && tsc-alias -p tsconfig.build.json",
26
+ "build:package": "yarn build",
27
+ "prepack": "yarn build"
28
+ },
29
+ "publishConfig": {
30
+ "access": "public",
31
+ "main": "./lib/index.mjs"
32
+ },
33
+ "exports": {
34
+ ".": {
35
+ "types": "./lib/index.d.ts",
36
+ "import": "./lib/index.mjs",
37
+ "require": "./lib/index.cjs"
38
+ },
39
+ "./index.css": "./lib/index.css",
40
+ "./package.json": "./package.json"
41
+ },
42
+ "main": "./lib/index.cjs",
43
+ "types": "./lib/index.d.ts",
44
+ "files": [
45
+ "lib",
46
+ "src"
47
+ ]
48
+ }
package/src/index.ts ADDED
File without changes