-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.25 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
{
"name": "@f*g/felix",
"version": "0.2.0",
"description": "my personal scheme: inspired by monokai, tailwind, & the color 🥑\"felix\"",
"keywords": [
"color",
"scheme",
"felix",
"monokai",
"tailwind"
],
"homepage": "https://github.com/felixakiragreen/felix#readme",
"bugs": {
"url": "https://github.com/felixakiragreen/felix/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/felixakiragreen/felix.git"
},
"license": "Unlicense",
"author": "Felix Green",
"main": "dist/index.js",
"module": "dist/felix.esm.js",
"typings": "dist/index.d.ts",
"directories": {
"test": "test"
},
"files": [
"dist"
],
"scripts": {
"build": "tsdx build",
"lint": "tsdx lint",
"npm:publish": "npm publish --access public",
"prepare": "tsdx build",
"start": "tsdx watch",
"test": "tsdx test"
},
"husky": {
"hooks": {
"pre-commit": "tsdx lint"
}
},
"prettier": {
"useTabs": true,
"singleQuote": true,
"trailingComma": "es5",
"printWidth": 80,
"semi": false
},
"dependencies": {},
"devDependencies": {
"@rollup/plugin-url": "^4.0.2",
"@types/jest": "^25.1.3",
"husky": "^4.2.3",
"rollup": "^1.32.0",
"tsdx": "^0.14.1",
"tslib": "^1.11.1",
"typescript": "^3.8.3"
},
"peerDependencies": {}
}