-
-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.35 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 2.35 KB
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
{
"name": "@devup-ui/next-plugin",
"description": "Zero Config, Zero FOUC, Zero Runtime, CSS in JS Preprocessor",
"repository": "https://github.com/dev-five-git/devup-ui",
"author": "devfive",
"license": "Apache-2.0",
"homepage": "https://devup-ui.com",
"bugs": {
"url": "https://github.com/dev-five-git/devup-ui/issues",
"email": "contact@devfive.kr"
},
"keywords": [
"css",
"css-in-js",
"css-in-js-preprocessor",
"css-in-js-framework",
"react",
"next",
"webpack"
],
"type": "module",
"version": "1.0.86",
"scripts": {
"lint": "eslint",
"build": "bun ../../node_modules/@typescript/native/bin/tsc && bun build --target node src/index.ts --production --env=disable --outfile dist/index.cjs --format cjs --packages external && bun build --target node src/index.ts --production --env=disable --outfile dist/index.mjs --format esm --packages external && bun build --target node src/loader.ts --production --env=disable --outfile dist/loader.cjs --format cjs --packages external && bun build --target node src/loader.ts --production --env=disable --outfile dist/loader.mjs --format esm --packages external && bun build --target node src/css-loader.ts --production --env=disable --outfile dist/css-loader.cjs --format cjs --packages external && bun build --target node src/css-loader.ts --production --env=disable --outfile dist/css-loader.mjs --format esm --packages external"
},
"publishConfig": {
"access": "public"
},
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
},
"./css-loader": {
"types": "./dist/css-loader.d.ts",
"import": "./dist/css-loader.mjs",
"require": "./dist/css-loader.cjs"
},
"./loader": {
"types": "./dist/loader.d.ts",
"import": "./dist/loader.mjs",
"require": "./dist/loader.cjs"
}
},
"files": [
"dist"
],
"types": "./dist/index.d.ts",
"dependencies": {
"@devup-ui/plugin-utils": "workspace:^",
"@devup-ui/webpack-plugin": "workspace:^",
"@devup-ui/wasm": "workspace:^"
},
"devDependencies": {
"typescript": "^7.0.2",
"@types/webpack": "^5.28"
},
"peerDependencies": {
"@devup-ui/webpack-plugin": "*",
"next": "*",
"@devup-ui/wasm": "*"
}
}