chore: Convert to a node style

This commit is contained in:
BluJ
2023-03-01 14:16:18 -07:00
parent 04f185f208
commit d4e0cdfd92
783 changed files with 11054 additions and 135393 deletions

44
package.json Normal file
View File

@@ -0,0 +1,44 @@
{
"name": "start-sdk",
"version": "0.4.0-lib0.alpha0",
"description": "For making the patterns that are wanted in making services for the startOS.",
"main": "./dist/startSdk.umd.cjs",
"module": "./dist/startSdk.mjs",
"files": [
"dist/**/*"
],
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"scripts": {
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Start9Labs/start-sdk.git"
},
"author": "Start9 Labs",
"license": "MIT",
"bugs": {
"url": "https://github.com/Start9Labs/start-sdk/issues"
},
"homepage": "https://github.com/Start9Labs/start-sdk#readme",
"dependencies": {
"@iarna/toml": "^2.2.5",
"ts-matches": "^5.4.1",
"yaml": "^2.2.1"
},
"devDependencies": {
"@types/jest": "^29.4.0",
"jest": "^29.4.3",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"tsconfig-paths": "^3.14.2",
"typescript": "^4.9.5",
"vitest": "^0.29.2"
},
"declaration": true
}