-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
129 lines (129 loc) · 3.31 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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"name": "@twind/typescript-plugin",
"version": "0.3.5",
"description": "TypeScript language service plugin that adds IntelliSense for twind",
"//": "mark as private to prevent accidental publish - use 'yarn release'",
"private": true,
"keywords": [
"TypeScript",
"tw-in-js",
"tailwind-in-js",
"tailwind"
],
"homepage": "https://github.com/tw-in-js/typescript-plugin#readme",
"bugs": "https://github.com/tw-in-js/typescript-plugin/issues",
"repository": "github:tw-in-js/typescript-plugin",
"license": "MIT",
"author": "Sascha Tandel (https://github.com/sastan)",
"files": [
"index.js"
],
"// The 'module', 'unpkg' and 'types' fields are added by distilt": "",
"main": "src/index.ts",
"// Each entry is expanded into several bundles (module, script, types, require, node, and default)": "",
"exports": {
".": "./src/index.ts",
"./package.json": "./package.json"
},
"// Disable browser builds": "",
"browser": false,
"scripts": {
"build": "distilt",
"format": "prettier --write --ignore-path .gitignore .",
"lint": "eslint --ext .js,.ts --ignore-path .gitignore .",
"postlint": "tsc",
"lint:fix": "yarn lint -- --fix",
"test": "uvu -r esm -r test-env.js",
"test:watch": "watchlist src -- yarn test",
"release": "npx np --contents dist",
"version": "yarn build"
},
"prettier": {
"printWidth": 100,
"semi": false,
"singleQuote": true,
"trailingComma": "all",
"bracketSpacing": true
},
"eslintConfig": {
"root": true,
"parserOptions": {
"ecmaVersion": 2020,
"sourceType": "module"
},
"env": {
"es6": true,
"shared-node-browser": true
},
"extends": [
"eslint:recommended",
"plugin:prettier/recommended"
],
"overrides": [
{
"files": [
"scripts/*.js"
],
"env": {
"node": true
},
"parserOptions": {
"ecmaVersion": 2019,
"sourceType": "script"
}
},
{
"files": [
"**/*.ts"
],
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint"
],
"extends": [
"plugin:@typescript-eslint/recommended"
]
}
]
},
"sideEffects": false,
"peerDependencies": {
"twind": ">=0.16.9 <2"
},
"peerDependenciesMeta": {
"twind": {
"optional": true
}
},
"dependencies": {
"clear-module": "^4.1.1",
"cssbeautify": "^0.3.1",
"fast-json-stable-stringify": "^2.1.0",
"match-sorter": "^6.3.0",
"sucrase": "^3.17.1",
"twind": "^0.16.10",
"typescript": "^4.1.0",
"typescript-template-language-service-decorator": "^2.2.0",
"vscode-languageserver-types": "^3.13.0"
},
"devDependencies": {
"@types/cssbeautify": "^0.3.1",
"@types/node": "^14.14.34",
"@typescript-eslint/eslint-plugin": "^4.9.1",
"@typescript-eslint/parser": "^4.9.1",
"distilt": "^0.10.4",
"esbuild-register": "^2.3.0",
"eslint": "^7.15.0",
"eslint-config-prettier": "^7.0.0",
"eslint-plugin-prettier": "^3.2.0",
"esm": "^3.2.25",
"execa": "^5.0.0",
"prettier": "^2.0.5",
"uvu": "^0.5.1",
"watchlist": "^0.2.3"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.com/"
}
}