Start on v9 sdk

This commit is contained in:
rijkvanzanten
2020-10-21 13:02:04 +02:00
parent 40377b341d
commit 86e9bb7d07
5 changed files with 52 additions and 0 deletions

14
packages/sdk-js/package-lock.json generated Normal file
View File

@@ -0,0 +1,14 @@
{
"name": "@directus/sdk-js",
"version": "1.0.0",
"lockfileVersion": 1,
"requires": true,
"dependencies": {
"typescript": {
"version": "4.0.3",
"resolved": "https://registry.npmjs.org/typescript/-/typescript-4.0.3.tgz",
"integrity": "sha512-tEu6DGxGgRJPb/mVPIZ48e69xCn2yRmCgYmDugAVwmJ6o+0u1RI18eO7E7WBTLYLaEVVOhwQmcdhQHweux/WPg==",
"dev": true
}
}
}

View File

@@ -0,0 +1,24 @@
{
"name": "@directus/sdk-js",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "tsc"
},
"keywords": [
"api",
"client",
"cms",
"directus",
"headless",
"javascript",
"node",
"sdk"
],
"author": "Rijk van Zanten <rijkvanzanten@me.com>",
"license": "MIT",
"devDependencies": {
"typescript": "^4.0.3"
}
}

View File

@@ -0,0 +1,3 @@
# Directus JS SDK
[WIP] v9

View File

View File

@@ -0,0 +1,11 @@
{
"compilerOptions": {
"target": "es5",
"module": "commonjs",
"declaration": true,
"outDir": "./dist",
"strict": true
},
"include": ["src"],
"exclude": ["node_modules"]
}