-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.17 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.17 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
{
"name": "@uindow/css",
"version": "1.0.1",
"description": "CSS Selector Generator",
"main": "index.js",
"module": "index.mjs",
"types": "types/index.d.ts",
"exports": {
".": {
"require": "./index.js",
"import": "./index.mjs"
}
},
"files": [
"index.js",
"index.js.map",
"index.mjs",
"index.mjs.map",
"types/index.d.ts"
],
"license": "MIT",
"author": "Mark Jivko <mark@uindow.com> (https://uindow.com)",
"homepage": "https://uindow.com",
"keywords": [
"css",
"uindow",
"selector",
"generator",
"css-selector",
"dom-selector",
"css-selector-generator",
"dom-selector-generator"
],
"scripts": {
"format": "prettier --write \"**/*.{js,cjs,ts}\"",
"lint": "eslint --fix --cache \"src/**/*.ts\"",
"build": "npm run lint && tsc && npm run format && node ./tools/build.cjs"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "8.60.0",
"esbuild": "0.25.9",
"eslint": "8.57.1",
"eslint-config-prettier": "8.10.0",
"eslint-plugin-prettier": "4.2.1",
"prettier": "2.8.8",
"typescript": "6.0.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/uindow/css.git"
},
"publishConfig": {
"access": "public"
}
}