Files
directus/packages/utils/package.json
Rijk van Zanten 2bc226d16f Change license to BSL-1.1 (#18330)
* Change license to BSL1.1

* Mark major version

* Fix formatting

* Remove duplicate heading

* Update formatting

* Copy paste error

* Update license

* Update license

* Format covenants

* Update readme.md

* Update licenses for packages

* Update readme.md

* Update contributors.yml

OG... but to be clear, rijkvanzanten is the one who really built all of this ❤️

* Tweak license in openapi

* Update packages/specs/src/openapi.yaml

* Add MIT license headers

* Use v10 in examples

* Update additional examples

* Update generate-extensions-entrypoint.test.ts

* Update tests to use latest v9 and v10 versions

* use lowercase for naming consistency

* change casing for api license

* Update migrations doc

* Update dictionary

* Consistent ordering of license field in app/package.json

* Use major version in specs again (but as string)

So it's valid for all v10 versions

* Consolidate readme's

---------

Co-authored-by: Ben Haynes <ben@directus.io>
Co-authored-by: Pascal Jufer <pascal-jufer@bluewin.ch>
Co-authored-by: ian <licitdev@gmail.com>
Co-authored-by: Azri Kahar <42867097+azrikahar@users.noreply.github.com>
2023-04-26 14:10:42 -04:00

67 lines
1.8 KiB
JSON

{
"name": "@directus/utils",
"version": "10.0.0",
"type": "module",
"scripts": {
"build": "tsc --project browser/tsconfig.json && tsc --project node/tsconfig.json && tsc --project shared/tsconfig.json",
"dev": "concurrently \"tsc --watch --project browser/tsconfig.json\" \"tsc --watch --project node/tsconfig.json\" \"tsc --watch --project shared/tsconfig.json\"",
"test": "vitest --watch=false"
},
"description": "Utilities shared between the Directus packages",
"repository": {
"type": "git",
"url": "https://github.com/directus/directus.git",
"directory": "packages/utils"
},
"funding": "https://github.com/directus/directus?sponsor=1",
"license": "MIT",
"author": "Rijk van Zanten <rijkvanzanten@me.com>",
"exports": {
".": {
"types": "./dist/shared/index.d.ts",
"import": "./dist/shared/index.js"
},
"./node": {
"types": "./dist/node/index.d.ts",
"import": "./dist/node/index.js"
},
"./browser": {
"types": "./dist/browser/index.d.ts",
"import": "./dist/browser/index.js"
},
"./package.json": "./package.json"
},
"main": "dist/shared/index.js",
"files": [
"dist",
"!**/*.test.{js,d.ts}"
],
"publishConfig": {
"access": "public"
},
"dependencies": {
"@directus/constants": "workspace:*",
"@directus/storage": "workspace:*",
"date-fns": "2.29.3",
"fs-extra": "11.1.1",
"joi": "17.9.1",
"lodash-es": "4.17.21",
"micromustache": "8.0.3",
"tmp": "0.2.1",
"vue": "3.2.47"
},
"devDependencies": {
"@directus/tsconfig": "0.0.7",
"@directus/types": "workspace:*",
"@ngneat/falso": "6.4.0",
"@types/fs-extra": "11.0.1",
"@types/lodash-es": "4.17.7",
"@types/node": "18.15.13",
"@types/tmp": "0.2.3",
"@vitest/coverage-c8": "0.30.1",
"concurrently": "8.0.1",
"typescript": "5.0.4",
"vitest": "0.30.1"
}
}