-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.33 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.33 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
{
"name": "nullstack-fontawesome",
"version": "0.1.0",
"description": "Font Awesome Nullstack component",
"type": "module",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"README.md",
"LICENSE",
"CHANGELOG.md",
"dist/**/*",
"src/**/*"
],
"scripts": {
"test": "jest",
"lint": "eslint \"**/*.{js,jsx,ts,tsx,njs,nts}\" --fix",
"build": "rollup -c",
"prepublishOnly": "npm run build"
},
"author": "Natan Feitosa <natansantosapps@gmail.com>",
"repository": {
"type": "git",
"url": "git+https://github.com/natanfeitosa/nullstack-fontawesome.git"
},
"keywords": [
"nullstack",
"fontawesome",
"icons",
"typescript"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/natanfeitosa/nullstack-fontawesome/issues"
},
"homepage": "https://github.com/natanfeitosa/nullstack-fontawesome#readme",
"devDependencies": {
"@rollup/plugin-commonjs": "^24.1.0",
"eslint-plugin-nullstack": "^0.0.26",
"nullstack": "^0.17.4",
"rollup": "^3.20.2",
"rollup-plugin-dts": "^5.3.0",
"rollup-plugin-esbuild": "^5.0.0",
"typescript": "^5.0.4"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.4.0",
"classnames": "^2.3.2"
},
"peerDependencies": {
"nullstack": "^0.17.4"
}
}