๐Ÿ“ฆ colinhacks / nxtk

๐Ÿ“„ package.json ยท 46 lines
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{
  "name": "nxtk",
  "version": "0.4.0",
  "description": "A project template for TypeScript npm packages",
  "main": "./lib/src/index.js",
  "types": "./lib/src/index.d.ts",
  "files": [
    "lib"
  ],
  "repository": {
    "type": "git",
    "url": "https://github.com/vriad/nxtk"
  },
  "author": "Colin McDonnell <hi@vriad.com>",
  "license": "MIT",
  "sideEffects": false,
  "bugs": {
    "url": "https://github.com/vriad/nxtk/issues"
  },
  "scripts": {
    "clean": "rm -rf lib/*",
    "build": "npm run clean && tsc"
  },
  "homepage": "https://github.com/vriad/nxtk",
  "dependencies": {},
  "tags": [],
  "keywords": [],
  "devDependencies": {
    "@types/jest": "^25.1.4",
    "@types/react": "^16.9.44",
    "jest": "^25.1.0",
    "make-coverage-badge": "^1.2.0",
    "next": "^10.0.3",
    "nodemon": "^2.0.2",
    "prettier": "^1.19.1",
    "react": "^16.13.1",
    "react-dom": "^16.13.1",
    "ts-jest": "^25.2.1",
    "tslint": "^6.1.0",
    "tslint-config-prettier": "^1.18.0",
    "typescript": "3.2"
  },
  "peerDependencies": {
    "next": "^10"
  }
}