-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
88 lines (88 loc) · 2.18 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
{
"$schema": "https://json.schemastore.org/package.json",
"name": "@mincho-js/css",
"description": " Natural CSS in the Typescript",
"version": "0.0.4",
"sideEffects": true,
"type": "module",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/mincho-js/mincho.git",
"directory": "packages/css"
},
"keywords": [
"css",
"style",
"typescript",
"vanilla-extract",
"preprocessor",
"transform",
"nested",
"nested css",
"css nesting",
"css-in-js",
"css-in-ts"
],
"bugs": {
"url": "https://github.com/mincho-js/mincho/issues"
},
"homepage": "https://github.com/mincho-js/mincho/tree/main/packages/css#readme",
"typings": "./dist/esm/index.d.ts",
"main": "./dist/cjs/index.cjs",
"module": "./dist/esm/index.mjs",
"exports": {
".": {
"import": {
"types": "./dist/esm/index.d.ts",
"default": "./dist/esm/index.mjs"
},
"require": {
"types": "./dist/cjs/index.d.cts",
"default": "./dist/cjs/index.cjs"
}
},
"./rules/createRuntimeFn": {
"import": {
"types": "./dist/esm/rules/createRuntimeFn.d.ts",
"default": "./dist/esm/rules/createRuntimeFn.mjs"
},
"require": {
"types": "./dist/cjs/rules/createRuntimeFn.d.cts",
"default": "./dist/cjs/rules/createRuntimeFn.cjs"
}
}
},
"publishConfig": {
"directory": "_release/package"
},
"files": [
"README.md",
"dist/"
],
"scripts": {
"clean": "yarn g:clean",
"build": "yarn g:build",
"build:watch": "yarn g:build-watch",
"test": "yarn g:test",
"test:watch": "yarn g:test-watch",
"lint": "yarn g:lint",
"fix": "yarn g:fix",
"check": "yarn g:check"
},
"prettier": "prettier-config-custom",
"dependencies": {
"@fastify/deepmerge": "^2.0.0",
"@mincho-js/transform-to-vanilla": "workspace:^"
},
"devDependencies": {
"@vanilla-extract/css": "^1.16.1",
"eslint-config-custom": "workspace:^",
"prettier-config-custom": "workspace:^",
"tsconfig-custom": "workspace:^",
"vite-config-custom": "workspace:^"
},
"peerDependencies": {
"@vanilla-extract/css": "*"
}
}