create-compute 0.0.1 → 0.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/dist/index.d.ts +2 -0
  2. package/package.json +8 -6
@@ -0,0 +1,2 @@
1
+
2
+ export { }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-compute",
3
- "version": "0.0.1",
3
+ "version": "0.2.0",
4
4
  "description": "Create ComputeSDK projects with a single command",
5
5
  "author": "Garrison",
6
6
  "license": "MIT",
@@ -34,6 +34,8 @@
34
34
  },
35
35
  "devDependencies": {
36
36
  "@types/node": "^20.0.0",
37
+ "@typescript-eslint/eslint-plugin": "^6.0.0",
38
+ "@typescript-eslint/parser": "^6.0.0",
37
39
  "@vitest/coverage-v8": "^1.0.0",
38
40
  "eslint": "^8.37.0",
39
41
  "rimraf": "^5.0.0",
@@ -45,10 +47,10 @@
45
47
  "build": "tsup",
46
48
  "clean": "rimraf dist",
47
49
  "dev": "tsup --watch",
48
- "test": "vitest",
49
- "test:watch": "vitest watch",
50
- "test:coverage": "vitest run --coverage",
51
- "typecheck": "tsc --noEmit",
52
- "lint": "eslint ."
50
+ "test": "echo 'nothing here'",
51
+ "test:watch": "echo 'nothing here'",
52
+ "test:coverage": "echo 'nothing here'",
53
+ "typecheck": "echo 'nothing here'",
54
+ "lint": "echo 'nothing here'"
53
55
  }
54
56
  }