mirror of
https://github.com/directus/directus.git
synced 2026-01-31 10:58:07 -05:00
28 lines
813 B
JSON
28 lines
813 B
JSON
{
|
|
"name": "@directus/extension-sdk",
|
|
"version": "9.0.0-rc.80",
|
|
"description": "A toolkit to develop extensions to extend Directus.",
|
|
"main": "dist/cjs/index.js",
|
|
"exports": {
|
|
"import": "./dist/esm/index.js",
|
|
"require": "./dist/cjs/index.js"
|
|
},
|
|
"scripts": {
|
|
"build": "run-p build:*",
|
|
"build:esm": "tsc --project ./tsconfig.json --module ES2015 --outDir ./dist/esm",
|
|
"build:cjs": "tsc --project ./tsconfig.json --module CommonJS --outDir ./dist/cjs",
|
|
"cleanup": "rimraf ./dist",
|
|
"dev": "npm run build -- -w --preserveWatchOutput --incremental"
|
|
},
|
|
"author": "Nicola Krumschmidt",
|
|
"gitHead": "24621f3934dc77eb23441331040ed13c676ceffd",
|
|
"dependencies": {
|
|
"@directus/shared": "9.0.0-rc.80"
|
|
},
|
|
"devDependencies": {
|
|
"npm-run-all": "4.1.5",
|
|
"rimraf": "3.0.2",
|
|
"typescript": "4.3.4"
|
|
}
|
|
}
|