This repository has been archived by the owner on Nov 29, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
105 lines (105 loc) · 2.99 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "@gameflow-tv/flume",
"version": "0.0.0",
"description": "Web implementation of the Flume design system",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
},
"./foundation": {
"require": "./dist/foundation.js",
"import": "./dist/foundation.mjs",
"types": "./dist/foundation.d.ts"
},
"./react": {
"require": "./dist/react.js",
"import": "./dist/react.mjs",
"types": "./dist/react.d.ts"
},
"./tailwind": {
"require": "./dist/tailwind.js",
"import": "./dist/tailwind.mjs",
"types": "./dist/tailwind.d.ts"
},
"./dist": {
"require": "./dist/index.js",
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
},
"./dist/foundation": {
"require": "./dist/foundation.js",
"import": "./dist/foundation.mjs",
"types": "./dist/foundation.d.ts"
},
"./dist/react": {
"require": "./dist/react.js",
"import": "./dist/react.mjs",
"types": "./dist/react.d.ts"
},
"./dist/tailwind": {
"require": "./dist/tailwind.js",
"import": "./dist/tailwind.mjs",
"types": "./dist/tailwind.d.ts"
}
},
"files": [
"dist",
"**.d.ts"
],
"repository": {
"type": "git",
"url": "git+https://github.com/gameflow-tv/flume.git"
},
"author": "Gameflow",
"license": "UNLICENSED",
"prettier": "@gameflow-tv/prettier-config",
"bugs": {
"url": "https://github.com/gameflow-tv/flume/issues"
},
"homepage": "https://github.com/gameflow-tv/flume#readme",
"scripts": {
"build": "tsc --build --clean && tsup",
"format": "prettier --write \"./**/*.{ts,tsx,js,jsx,json}\"",
"format:ci": "prettier \"./**/*.{ts,tsx,js,jsx,json}\" --check",
"lint": "eslint --fix --cache --ext .js,.jsx,.ts,.tsx,.mdx ./src",
"lint:ci": "eslint --ext .js,.jsx,.ts,.tsx,.mdx ./src",
"watch": "npm run build -- --watch",
"test": "NODE_OPTIONS=--experimental-vm-modules jest",
"test:ci": "npm test -- --ci",
"build:styles": "postcss ./src/react/tailwind.source.css -o ./src/react/tailwind.css"
},
"devDependencies": {
"@gameflow-tv/eslint-config": "^0.1.4",
"@gameflow-tv/prettier-config": "^0.2.4",
"@types/jest": "^28.1.6",
"@types/node": "^18.6.3",
"@types/react": "^18.0.15",
"autoprefixer": "^10.4.8",
"esbuild": "^0.15.2",
"eslint": "^8.21.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^28.1.3",
"postcss": "^8.4.16",
"postcss-cli": "^10.0.0",
"postcss-nesting": "^10.1.10",
"prettier": "2.7.1",
"tailwindcss": "^3.1.8",
"ts-jest": "^28.0.7",
"tsup": "^6.2.2",
"typescript": "^4.7.4"
},
"optionalDependencies": {
"react": ">=18",
"react-dom": ">=18"
},
"engines": {
"node": ">=12"
}
}