-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 1.84 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
{
"name": "maic",
"description": "ma(terial )ic(ons)",
"type": "module",
"keywords": [
"material",
"icons",
"svg",
"module",
"tree-shaking"
],
"author": "sxxov",
"repository": {
"type": "git",
"url": "https://github.com/sxxov/maic.git"
},
"homepage": "https://github.com/sxxov/maic#readme",
"license": "MIT",
"module": "./dist/index.js",
"scripts": {
"build": "node --loader ts-node/esm build.ts && tsc --project tsconfig.src.json",
"pub": "node --loader ts-node/esm publish.ts"
},
"types": "./dist/index.d.ts",
"exports": {
"./filled": {
"types": "./dist/filled/index.d.ts",
"import": "./dist/filled/index.js"
},
"./outlined": {
"types": "./dist/outlined/index.d.ts",
"import": "./dist/outlined/index.js"
},
"./round": {
"types": "./dist/round/index.d.ts",
"import": "./dist/round/index.js"
},
"./sharp": {
"types": "./dist/sharp/index.d.ts",
"import": "./dist/sharp/index.js"
},
"./two_tone": {
"types": "./dist/two_tone/index.d.ts",
"import": "./dist/two_tone/index.js"
},
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./*": {
"import": "./dist/*"
},
"./helper": {
"types": "./dist/helper.d.ts",
"import": "./dist/helper.js"
}
},
"devDependencies": {
"@material-design-icons/svg": "^0.14.13",
"@typescript-eslint/eslint-plugin": "^5.59.11",
"@typescript-eslint/parser": "^5.59.11",
"deep-object-diff": "^1.1.9",
"eslint": "^8.43.0",
"eslint-config-prettier": "^8.8.0",
"eslint-config-xo": "^0.43.1",
"eslint-config-xo-typescript": "^0.57.0",
"eslint-plugin-only-warn": "^1.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-typescript-sort-keys": "^2.3.0",
"prettier": "npm:@btmills/prettier@^2.8.8",
"prettier-plugin-jsdoc": "^0.4.2",
"ts-node": "^10.9.1",
"typescript": "^5.1.3"
},
"version": "0.14.13-1"
}